Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: chrome/content/elemHideEmulation.js

Issue 29372676: [adblockpluscore] Issue 4825 - Let ElemHideEmulation associate selector and filter when calling add… (Closed)
Left Patch Set: Created Jan. 19, 2017, 3:57 p.m.
Right Patch Set: Changed map to two arrays Created Feb. 9, 2017, 8:05 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 var propertySelectorRegExp = /\[\-abp\-properties=(["'])([^"']+)\1\]/; 1 var propertySelectorRegExp = /\[\-abp\-properties=(["'])([^"']+)\1\]/;
2 2
3 function splitSelector(selector) 3 function splitSelector(selector)
4 { 4 {
5 if (selector.indexOf(",") == -1) 5 if (selector.indexOf(",") == -1)
6 return [selector]; 6 return [selector];
7 7
8 var selectors = []; 8 var selectors = [];
9 var start = 0; 9 var start = 0;
10 var level = 0; 10 var level = 0;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 { 66 {
67 return new URL(stylesheet.href).origin == this.window.location.origin; 67 return new URL(stylesheet.href).origin == this.window.location.origin;
68 } 68 }
69 catch (e) 69 catch (e)
70 { 70 {
71 // Invalid URL, assume that it is first-party. 71 // Invalid URL, assume that it is first-party.
72 return true; 72 return true;
73 } 73 }
74 }, 74 },
75 75
76 findSelectors: function(stylesheet, filters) 76 findSelectors: function(stylesheet, selectors, filters)
77 { 77 {
78 // Explicitly ignore third-party stylesheets to ensure consistent behavior 78 // Explicitly ignore third-party stylesheets to ensure consistent behavior
79 // between Firefox and Chrome. 79 // between Firefox and Chrome.
80 if (!this.isSameOrigin(stylesheet)) 80 if (!this.isSameOrigin(stylesheet))
81 return; 81 return;
82 82
83 var rules = stylesheet.cssRules; 83 let rules = stylesheet.cssRules;
84 if (!rules) 84 if (!rules)
85 return; 85 return;
86 86
87 for (var i = 0; i < rules.length; i++) 87 for (let rule of rules)
88 { 88 {
89 var rule = rules[i];
90 if (rule.type != rule.STYLE_RULE) 89 if (rule.type != rule.STYLE_RULE)
91 continue; 90 continue;
92 91
93 var style = this.stringifyStyle(rule.style); 92 let style = this.stringifyStyle(rule.style);
94 for (var j = 0; j < this.patterns.length; j++) 93 for (let pattern of this.patterns)
95 { 94 {
96 var pattern = this.patterns[j];
97 if (pattern.regexp.test(style)) 95 if (pattern.regexp.test(style))
98 { 96 {
99 var subSelectors = splitSelector(rule.selectorText); 97 let subSelectors = splitSelector(rule.selectorText);
100 var selectors = [] 98 for (let subSelector of subSelectors)
Sebastian Noack 2017/02/06 14:59:21 Nit: Missing semicolon
wspee 2017/02/07 11:59:41 Done.
101 99 {
102 for (var k = 0; k < subSelectors.length; k++) 100 selectors.push(pattern.prefix + subSelector + pattern.suffix);
103 selectors.push(pattern.prefix + subSelectors[k] + pattern.suffix); 101 filters.push(pattern.text);
104 102 }
105 if (!(pattern.text in filters))
106 filters[pattern.text] = selectors;
Sebastian Noack 2017/02/06 14:59:21 While changing the API here anyway, it might be a
wspee 2017/02/07 11:59:41 Done.
107 else
108 filters[pattern.text] = filters[pattern.text].concat(selectors);
109 } 103 }
110 } 104 }
111 } 105 }
112 }, 106 },
113 107
114 addSelectors: function(stylesheets) 108 addSelectors: function(stylesheets)
115 { 109 {
116 var filters = {}; 110 var selectors = [];
111 var filters = [];
117 for (var i = 0; i < stylesheets.length; i++) 112 for (var i = 0; i < stylesheets.length; i++)
118 this.findSelectors(stylesheets[i], filters); 113 this.findSelectors(stylesheets[i], selectors, filters);
119 this.addSelectorsFunc(filters); 114 this.addSelectorsFunc(selectors, filters);
120 }, 115 },
121 116
122 onLoad: function(event) 117 onLoad: function(event)
123 { 118 {
124 var stylesheet = event.target.sheet; 119 var stylesheet = event.target.sheet;
125 if (stylesheet) 120 if (stylesheet)
126 this.addSelectors([stylesheet]); 121 this.addSelectors([stylesheet]);
127 }, 122 },
128 123
129 load: function(callback) 124 load: function(callback)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 apply: function() 157 apply: function()
163 { 158 {
164 if (this.patterns.length > 0) 159 if (this.patterns.length > 0)
165 { 160 {
166 var document = this.window.document; 161 var document = this.window.document;
167 this.addSelectors(document.styleSheets); 162 this.addSelectors(document.styleSheets);
168 document.addEventListener("load", this.onLoad.bind(this), true); 163 document.addEventListener("load", this.onLoad.bind(this), true);
169 } 164 }
170 } 165 }
171 }; 166 };
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld