| Index: chrome/content/ui/filters-filterview.js | 
| =================================================================== | 
| --- a/chrome/content/ui/filters-filterview.js | 
| +++ b/chrome/content/ui/filters-filterview.js | 
| @@ -647,17 +647,17 @@ | 
| this.init(); | 
| this.boxObject = boxObject; | 
| this.noGroupDummy = {index: 0, filter: {text: this.boxObject.treeBody.getAttribute("noGroupText"), dummy: true}}; | 
| this.noFiltersDummy = {index: 0, filter: {text: this.boxObject.treeBody.getAttribute("noFiltersText"), dummy: true}}; | 
| this.editDummy = {filter: {text: ""}}; | 
| let atomService = Cc["@mozilla.org/atom-service;1"].getService(Ci.nsIAtomService); | 
| - let stringAtoms = ["col-filter", "col-enabled", "col-hitcount", "col-lasthit", "type-invalid", "type-comment", "type-blocking", "type-whitelist", "type-elemhide", "type-elemhideexception", "type-cssproperty"]; | 
| + let stringAtoms = ["col-filter", "col-enabled", "col-hitcount", "col-lasthit", "type-invalid", "type-comment", "type-blocking", "type-whitelist", "type-elemhide", "type-elemhideexception", "type-elemhideemulation"]; | 
| let boolAtoms = ["selected", "dummy", "slow", "disabled"]; | 
| this.atoms = {}; | 
| for (let atom of stringAtoms) | 
| this.atoms[atom] = atomService.getAtom(atom); | 
| for (let atom of boolAtoms) | 
| { | 
| this.atoms[atom + "-true"] = atomService.getAtom(atom + "-true"); |