Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 // We are currently limited to ECMAScript 5 in this file, because it is being | 1 /* |
2 // used in the browser tests. See https://issues.adblockplus.org/ticket/4796 | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 | 3 * Copyright (C) 2006-2017 eyeo GmbH |
4 var propertySelectorRegExp = /\[-abp-properties=(["'])([^"']+)\1\]/; | 4 * |
5 var abpSelectorRegExp = /\[-abp-selector=(["'])(.+)\1\]/; | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 var pseudoClassHasSelectorRegExp = /:has\((.*)\)/; | 6 * it under the terms of the GNU General Public License version 3 as |
7 var pseudoClassPropsSelectorRegExp = /:-abp-properties\((["'])([^"']+)\1\)/; | 7 * published by the Free Software Foundation. |
8 * | |
9 * Adblock Plus is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License | |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
16 */ | |
17 | |
18 /* globals filterToRegExp */ | |
19 | |
20 "use strict"; | |
21 | |
22 const abpSelectorRegexp = /:-abp-([\w-]+)\(/i; | |
23 | |
24 let reportError = () => {}; | |
8 | 25 |
9 function splitSelector(selector) | 26 function splitSelector(selector) |
10 { | 27 { |
11 if (selector.indexOf(",") == -1) | 28 if (selector.indexOf(",") == -1) |
12 return [selector]; | 29 return [selector]; |
13 | 30 |
14 var selectors = []; | 31 let selectors = []; |
15 var start = 0; | 32 let start = 0; |
16 var level = 0; | 33 let level = 0; |
17 var sep = ""; | 34 let sep = ""; |
18 | 35 |
19 for (var i = 0; i < selector.length; i++) | 36 for (let i = 0; i < selector.length; i++) |
20 { | 37 { |
21 var chr = selector[i]; | 38 let chr = selector[i]; |
22 | 39 |
23 if (chr == "\\") // ignore escaped characters | 40 if (chr == "\\") // ignore escaped characters |
24 i++; | 41 i++; |
25 else if (chr == sep) // don't split within quoted text | 42 else if (chr == sep) // don't split within quoted text |
26 sep = ""; // e.g. [attr=","] | 43 sep = ""; // e.g. [attr=","] |
27 else if (sep == "") | 44 else if (sep == "") |
28 { | 45 { |
29 if (chr == '"' || chr == "'") | 46 if (chr == '"' || chr == "'") |
30 sep = chr; | 47 sep = chr; |
31 else if (chr == "(") // don't split between parentheses | 48 else if (chr == "(") // don't split between parentheses |
32 level++; // e.g. :matches(div,span) | 49 level++; // e.g. :matches(div,span) |
33 else if (chr == ")") | 50 else if (chr == ")") |
34 level = Math.max(0, level - 1); | 51 level = Math.max(0, level - 1); |
35 else if (chr == "," && level == 0) | 52 else if (chr == "," && level == 0) |
36 { | 53 { |
37 selectors.push(selector.substring(start, i)); | 54 selectors.push(selector.substring(start, i)); |
38 start = i + 1; | 55 start = i + 1; |
39 } | 56 } |
40 } | 57 } |
41 } | 58 } |
42 | 59 |
43 selectors.push(selector.substring(start)); | 60 selectors.push(selector.substring(start)); |
44 return selectors; | 61 return selectors; |
45 } | 62 } |
46 | 63 |
47 const ABP_ATTR = "abp-0ac791f0-a03b-4f2c-a935-a285bc2e668e"; | 64 /** Return position of node from parent. |
48 const ABP_ATTR_SEL = "[" + ABP_ATTR + "] "; | 65 * @param {Node} node the node to find the position of. |
49 | 66 * @return {number} One-based index like for :nth-child(), or 0 on error. |
50 function matchChildren(e, selector) | |
51 { | |
52 var subElement; | |
53 var newSelector = ABP_ATTR_SEL + selector; | |
54 var parentNode = e.parentNode || document; | |
55 | |
56 e.setAttribute(ABP_ATTR, ""); | |
57 subElement = parentNode.querySelector(newSelector); | |
58 e.removeAttribute(ABP_ATTR); | |
59 | |
60 return subElement != null; | |
61 } | |
62 | |
63 function selectChildren(e, selector) | |
64 { | |
65 var subElements; | |
66 var newSelector = ABP_ATTR_SEL + selector; | |
67 var parentNode = e.parentNode || document; | |
68 | |
69 e.setAttribute(ABP_ATTR, ""); | |
70 subElements = parentNode.querySelectorAll(newSelector); | |
71 e.removeAttribute(ABP_ATTR); | |
72 | |
73 return subElements; | |
74 } | |
75 | |
76 /** Unwrap the pattern out of a [-abp-selector=''] if necessary | |
77 * @param {object} pattern - The pattern object to unwrap | |
78 * @return {object} the parsed pattern object or undefined if nothing parse. | |
79 */ | 67 */ |
80 function unwrapPattern(pattern) | 68 function positionInParent(node) |
81 { | 69 { |
82 var match = abpSelectorRegExp.exec(pattern.selector); | 70 let {children} = node.parentNode; |
83 if (match) | 71 for (let i = 0; i < children.length; i++) |
84 { | 72 if (children[i] == node) |
85 var prefix = pattern.selector.substr(0, match.index).trim(); | 73 return i + 1; |
86 var suffix = pattern.selector.substr(match.index + match[0].length).trim(); | 74 return 0; |
87 var selector = prefix + match[2] + suffix; | 75 } |
88 return parsePattern({selector: selector}); | 76 |
89 } | 77 function makeSelector(node, selector) |
90 | 78 { |
91 return parsePattern(pattern); | 79 if (!node.parentElement) |
92 } | 80 { |
93 | 81 let newSelector = ":root"; |
94 function parsePattern(pattern) | 82 if (selector) |
95 { | 83 newSelector += " > " + selector; |
96 var selector = pattern.selector; | 84 return newSelector; |
97 | 85 } |
98 var match = pseudoClassHasSelectorRegExp.exec(selector); | 86 let idx = positionInParent(node); |
Felix Dahlke
2017/04/10 10:55:12
How I understand the code, :has and :-abp-properti
hub
2017/04/10 12:29:27
My question is do we still support [-abp-propertie
Felix Dahlke
2017/04/10 12:35:41
Lonely :-abp-properties (pseudo class syntax!) sho
hub
2017/04/10 12:41:02
Ah right. The pseudo class syntax. Good catch.
| |
99 if (match) | 87 if (idx > 0) |
100 return { | 88 { |
101 type: "has", | 89 let newSelector = `${node.tagName}:nth-child(${idx})`; |
102 text: pattern.text, | 90 if (selector) |
103 elementMatcher: new PseudoHasMatcher(match[1]), | 91 newSelector += " > " + selector; |
104 prefix: selector.substr(0, match.index).trim(), | 92 return makeSelector(node.parentElement, newSelector); |
105 suffix: selector.substr(match.index + match[0].length).trim() | 93 } |
106 }; | 94 |
107 | 95 return selector; |
108 match = pseudoClassPropsSelectorRegExp.exec(selector); | 96 } |
97 | |
98 function parseSelectorContent(content, startIndex) | |
99 { | |
100 let parens = 1; | |
101 let quote = null; | |
102 let i = startIndex; | |
103 for (; i < content.length; i++) | |
104 { | |
105 let c = content[i]; | |
106 if (c == "\\") | |
107 { | |
108 // Ignore escaped characters | |
109 i++; | |
110 } | |
111 else if (quote) | |
112 { | |
113 if (c == quote) | |
114 quote = null; | |
115 } | |
116 else if (c == "'" || c == '"') | |
117 quote = c; | |
118 else if (c == "(") | |
119 parens++; | |
120 else if (c == ")") | |
121 { | |
122 parens--; | |
123 if (parens == 0) | |
124 break; | |
125 } | |
126 } | |
127 | |
128 if (parens > 0) | |
129 return null; | |
130 return {text: content.substring(startIndex, i), end: i}; | |
131 } | |
132 | |
133 /** Parse the selector | |
134 * @param {string} selector the selector to parse | |
135 * @return {Object} selectors is an array of objects, | |
136 * or null in case of errors. hide is true if we'll hide | |
137 * elements instead of styles.. | |
138 */ | |
139 function parseSelector(selector) | |
140 { | |
141 if (selector.length == 0) | |
142 return []; | |
143 | |
144 let match = abpSelectorRegexp.exec(selector); | |
109 if (!match) | 145 if (!match) |
110 match = propertySelectorRegExp.exec(selector); | 146 return [new PlainSelector(selector)]; |
111 if (match) | 147 |
112 { | 148 let selectors = []; |
113 var regexpString; | 149 if (match.index > 0) |
114 var propertyExpression = match[2]; | 150 selectors.push(new PlainSelector(selector.substr(0, match.index))); |
115 if (propertyExpression.length >= 2 && propertyExpression[0] == "/" && | 151 |
116 propertyExpression[propertyExpression.length - 1] == "/") | 152 let startIndex = match.index + match[0].length; |
117 regexpString = propertyExpression.slice(1, -1) | 153 let content = parseSelectorContent(selector, startIndex); |
154 if (!content) | |
155 { | |
156 reportError(new SyntaxError("Failed to parse Adblock Plus " + | |
157 `selector ${selector}, ` + | |
158 "due to unmatched parentheses.")); | |
159 return null; | |
160 } | |
161 if (match[1] == "properties") | |
162 selectors.push(new PropsSelector(content.text)); | |
163 else if (match[1] == "has") | |
164 { | |
165 let hasSelector = new HasSelector(content.text); | |
166 if (!hasSelector.valid()) | |
167 return null; | |
168 selectors.push(hasSelector); | |
169 } | |
170 else | |
171 { | |
172 // this is an error, can't parse selector. | |
173 reportError(new SyntaxError("Failed to parse Adblock Plus " + | |
174 `selector ${selector}, invalid ` + | |
175 `pseudo-class :-abp-${match[1]}().`)); | |
176 return null; | |
177 } | |
178 | |
179 let suffix = parseSelector(selector.substr(content.end + 1)); | |
180 if (suffix == null) | |
181 return null; | |
182 | |
183 selectors.push(...suffix); | |
184 | |
185 return selectors; | |
186 } | |
187 | |
188 /** Stringified style objects | |
189 * @typedef {Object} StringifiedStyle | |
190 * @property {string} style CSS style represented by a string. | |
191 * @property {string[]} subSelectors selectors the CSS properties apply to. | |
192 */ | |
193 | |
194 /** | |
195 * Produce a string representation of the stylesheet entry. | |
196 * @param {CSSStyleRule} rule the CSS style rule. | |
197 * @return {StringifiedStyle} the stringified style. | |
198 */ | |
199 function stringifyStyle(rule) | |
200 { | |
201 let styles = []; | |
202 for (let i = 0; i < rule.style.length; i++) | |
203 { | |
204 let property = rule.style.item(i); | |
205 let value = rule.style.getPropertyValue(property); | |
206 let priority = rule.style.getPropertyPriority(property); | |
207 styles.push(`${property}: ${value}${priority ? " !" + priority : ""};`); | |
208 } | |
209 styles.sort(); | |
210 return { | |
211 style: styles.join(" "), | |
212 subSelectors: splitSelector(rule.selectorText) | |
213 }; | |
214 } | |
215 | |
216 function* evaluate(chain, index, prefix, subtree, styles) | |
217 { | |
218 if (index >= chain.length) | |
219 { | |
220 yield prefix; | |
221 return; | |
222 } | |
223 for (let [selector, element] of | |
224 chain[index].getSelectors(prefix, subtree, styles)) | |
225 yield* evaluate(chain, index + 1, selector, element, styles); | |
226 } | |
227 | |
228 function PlainSelector(selector) | |
229 { | |
230 this._selector = selector; | |
231 } | |
232 | |
233 PlainSelector.prototype = { | |
234 /** | |
235 * Generator function returning a pair of selector | |
236 * string and subtree. | |
237 * @param {string} prefix the prefix for the selector. | |
238 * @param {Node} subtree the subtree we work on. | |
239 * @param {StringifiedStyle[]} styles the stringified style objects. | |
240 */ | |
241 *getSelectors(prefix, subtree, styles) | |
242 { | |
243 yield [prefix + this._selector, subtree]; | |
244 } | |
245 }; | |
246 | |
247 const incompletePrefixRegexp = /[\s>+~]$/; | |
248 | |
249 function HasSelector(selector) | |
250 { | |
251 this._innerSelectors = parseSelector(selector); | |
252 } | |
253 | |
254 HasSelector.prototype = { | |
255 requiresHiding: true, | |
256 | |
257 valid() | |
258 { | |
259 return this._innerSelectors != null; | |
260 }, | |
261 | |
262 *getSelectors(prefix, subtree, styles) | |
263 { | |
264 for (let element of this.getElements(prefix, subtree, styles)) | |
265 yield [makeSelector(element, ""), element]; | |
266 }, | |
267 | |
268 /** | |
269 * Generator function returning selected elements. | |
270 * @param {string} prefix the prefix for the selector. | |
271 * @param {Node} subtree the subtree we work on. | |
272 * @param {StringifiedStyle[]} styles the stringified style objects. | |
273 */ | |
274 *getElements(prefix, subtree, styles) | |
275 { | |
276 let actualPrefix = (!prefix || incompletePrefixRegexp.test(prefix)) ? | |
277 prefix + "*" : prefix; | |
278 let elements = subtree.querySelectorAll(actualPrefix); | |
279 for (let element of elements) | |
280 { | |
281 let newPrefix = makeSelector(element, ""); | |
282 let iter = evaluate(this._innerSelectors, 0, newPrefix + " ", | |
283 element, styles); | |
284 for (let selector of iter) | |
285 // we insert a space between the two. It becomes a no-op if selector | |
286 // doesn't have a combinator | |
287 if (subtree.querySelector(selector)) | |
288 yield element; | |
289 } | |
290 } | |
291 }; | |
292 | |
293 function PropsSelector(propertyExpression) | |
294 { | |
295 let regexpString; | |
296 if (propertyExpression.length >= 2 && propertyExpression[0] == "/" && | |
297 propertyExpression[propertyExpression.length - 1] == "/") | |
298 { | |
299 regexpString = propertyExpression.slice(1, -1) | |
118 .replace("\\x7B ", "{").replace("\\x7D ", "}"); | 300 .replace("\\x7B ", "{").replace("\\x7D ", "}"); |
119 else | 301 } |
120 regexpString = filterToRegExp(propertyExpression); | 302 else |
121 return { | 303 regexpString = filterToRegExp(propertyExpression); |
122 type: "props", | 304 |
123 text: pattern.text, | 305 this._regexp = new RegExp(regexpString, "i"); |
124 regexp: new RegExp(regexpString, "i"), | 306 } |
125 prefix: selector.substr(0, match.index), | 307 |
126 suffix: selector.substr(match.index + match[0].length) | 308 PropsSelector.prototype = { |
127 }; | 309 *findPropsSelectors(styles, prefix, regexp) |
128 } | 310 { |
129 } | 311 for (let style of styles) |
130 | 312 if (regexp.test(style.style)) |
131 function matchStyleProps(style, rule, pattern, selectors, filters) | 313 for (let subSelector of style.subSelectors) |
132 { | 314 yield prefix + subSelector; |
133 if (pattern.regexp.test(style)) | 315 }, |
134 { | 316 |
135 var subSelectors = splitSelector(rule.selectorText); | 317 *getSelectors(prefix, subtree, styles) |
136 for (var i = 0; i < subSelectors.length; i++) | 318 { |
137 { | 319 for (let selector of this.findPropsSelectors(styles, prefix, this._regexp)) |
138 var subSelector = subSelectors[i]; | 320 yield [selector, subtree]; |
139 selectors.push(pattern.prefix + subSelector + pattern.suffix); | |
140 filters.push(pattern.text); | |
141 } | |
142 } | |
143 } | |
144 | |
145 function findPropsSelectors(stylesheet, patterns, selectors, filters) | |
146 { | |
147 var rules = stylesheet.cssRules; | |
148 if (!rules) | |
149 return; | |
150 | |
151 for (var i = 0; i < rules.length; i++) | |
152 { | |
153 var rule = rules[i]; | |
154 if (rule.type != rule.STYLE_RULE) | |
155 continue; | |
156 | |
157 var style = stringifyStyle(rule.style); | |
158 for (var j = 0; j < patterns.length; j++) | |
159 { | |
160 matchStyleProps(style, rule, patterns[j], selectors, filters); | |
161 } | |
162 } | |
163 } | |
164 | |
165 /** | |
166 * Match the selector @pattern containing :has() starting from @node. | |
167 * @param {string} pattern - the pattern to match | |
168 * @param {object} node - the top level node. | |
169 */ | |
170 function pseudoClassHasMatch(pattern, node, stylesheets, elements, filters) | |
171 { | |
172 // select element for the prefix pattern. Or just use node. | |
173 var haveEl = pattern.prefix ? node.querySelectorAll(pattern.prefix) : [ node ] ; | |
174 for (var j = 0; j < haveEl.length; j++) | |
175 { | |
176 var matched = pattern.elementMatcher.match(haveEl[j], stylesheets); | |
177 if (!matched) | |
178 continue; | |
179 | |
180 if (pattern.suffix) | |
181 { | |
182 var subElements = selectChildren(haveEl[j], pattern.suffix); | |
183 if (subElements) | |
184 { | |
185 for (var k = 0; k < subElements.length; k++) | |
186 { | |
187 elements.push(subElements[k]); | |
188 filters.push(pattern.text); | |
189 } | |
190 } | |
191 } | |
192 else | |
193 { | |
194 elements.push(haveEl[j]); | |
195 filters.push(pattern.text); | |
196 } | |
197 } | |
198 } | |
199 | |
200 function stringifyStyle(style) | |
201 { | |
202 var styles = []; | |
203 for (var i = 0; i < style.length; i++) | |
204 { | |
205 var property = style.item(i); | |
206 var value = style.getPropertyValue(property); | |
207 var priority = style.getPropertyPriority(property); | |
208 styles.push(property + ": " + value + (priority ? " !" + priority : "") + "; "); | |
209 } | |
210 styles.sort(); | |
211 return styles.join(" "); | |
212 } | |
213 | |
214 /** matcher for the pseudo CSS4 class :has() | |
215 * For those browser that don't have it yet. | |
216 */ | |
217 function PseudoHasMatcher(selector) | |
218 { | |
219 this.hasSelector = selector; | |
220 this.parsed = parsePattern({selector: this.hasSelector}); | |
221 } | |
222 | |
223 PseudoHasMatcher.prototype = { | |
224 match: function(elem, stylesheets) | |
225 { | |
226 var selectors = []; | |
227 | |
228 if (this.parsed) | |
229 { | |
230 var filters = []; // don't need this, we have a partial filter. | |
231 if (this.parsed.type == "has") | |
232 { | |
233 var child = elem.firstChild; | |
234 while (child) | |
235 { | |
236 if (child.nodeType === Node.ELEMENT_NODE) | |
237 { | |
238 var matches = []; | |
239 pseudoClassHasMatch(this.parsed, child, stylesheets, matches, filter s); | |
240 if (matches.length > 0) | |
241 return true; | |
242 } | |
243 child = child.nextSibling; | |
244 } | |
245 return false; | |
246 } | |
247 if (this.parsed.type == "props") | |
248 { | |
249 for (var i = 0; i < stylesheets.length; i++) | |
250 findPropsSelectors(stylesheets[i], [this.parsed], selectors, filters); | |
251 } | |
252 } | |
253 else | |
254 { | |
255 selectors = [this.hasSelector]; | |
256 } | |
257 | |
258 var matched = false; | |
259 // look up for all elements that match the :has(). | |
260 for (var k = 0; k < selectors.length; k++) | |
261 { | |
262 try | |
263 { | |
264 matched = matchChildren(elem, selectors[k]); | |
265 if (matched) | |
266 break; | |
267 } | |
268 catch (e) | |
269 { | |
270 console.error("Exception with querySelector()", selectors[k], e); | |
271 } | |
272 } | |
273 return matched; | |
274 } | 321 } |
275 }; | 322 }; |
276 | 323 |
277 function ElemHideEmulation(window, getFiltersFunc, addSelectorsFunc, hideElement sFunc) | 324 function ElemHideEmulation(window, getFiltersFunc, addSelectorsFunc, |
325 hideElemsFunc) | |
278 { | 326 { |
279 this.window = window; | 327 this.window = window; |
280 this.getFiltersFunc = getFiltersFunc; | 328 this.getFiltersFunc = getFiltersFunc; |
281 this.addSelectorsFunc = addSelectorsFunc; | 329 this.addSelectorsFunc = addSelectorsFunc; |
282 this.hideElementsFunc = hideElementsFunc; | 330 this.hideElemsFunc = hideElemsFunc; |
283 } | 331 } |
284 | 332 |
285 ElemHideEmulation.prototype = { | 333 ElemHideEmulation.prototype = { |
286 | 334 isSameOrigin(stylesheet) |
287 isSameOrigin: function(stylesheet) | |
288 { | 335 { |
289 try | 336 try |
290 { | 337 { |
291 return new URL(stylesheet.href).origin == this.window.location.origin; | 338 return new URL(stylesheet.href).origin == this.window.location.origin; |
292 } | 339 } |
293 catch (e) | 340 catch (e) |
294 { | 341 { |
295 // Invalid URL, assume that it is first-party. | 342 // Invalid URL, assume that it is first-party. |
296 return true; | 343 return true; |
297 } | 344 } |
298 }, | 345 }, |
299 | 346 |
300 findPseudoClassHasElements: function(node, stylesheets, elements, filters) | 347 addSelectors(stylesheets) |
301 { | 348 { |
302 for (var i = 0; i < this.pseudoHasPatterns.length; i++) | 349 let selectors = []; |
303 { | 350 let selectorFilters = []; |
304 pseudoClassHasMatch(this.pseudoHasPatterns[i], node, stylesheets, elements , filters); | 351 |
305 } | 352 let elements = []; |
306 }, | 353 let elementFilters = []; |
307 | 354 |
308 addSelectors: function(stylesheets) | 355 let cssStyles = []; |
309 { | 356 |
310 var selectors = []; | 357 for (let stylesheet of stylesheets) |
311 var filters = []; | |
312 for (var i = 0; i < stylesheets.length; i++) | |
313 { | 358 { |
314 // Explicitly ignore third-party stylesheets to ensure consistent behavior | 359 // Explicitly ignore third-party stylesheets to ensure consistent behavior |
315 // between Firefox and Chrome. | 360 // between Firefox and Chrome. |
316 if (!this.isSameOrigin(stylesheets[i])) | 361 if (!this.isSameOrigin(stylesheet)) |
317 continue; | 362 continue; |
318 findPropsSelectors(stylesheets[i], this.propSelPatterns, selectors, filter s); | 363 |
319 } | 364 let rules = stylesheet.cssRules; |
320 this.addSelectorsFunc(selectors, filters); | 365 if (!rules) |
321 }, | 366 continue; |
322 | 367 |
323 hideElements: function(stylesheets) | 368 for (let rule of rules) |
324 { | 369 { |
325 var elements = []; | 370 if (rule.type != rule.STYLE_RULE) |
326 var filters = []; | 371 continue; |
327 this.findPseudoClassHasElements(document, stylesheets, elements, filters); | 372 |
328 this.hideElementsFunc(elements, filters); | 373 cssStyles.push(stringifyStyle(rule)); |
329 }, | 374 } |
330 | 375 } |
331 onLoad: function(event) | 376 |
332 { | 377 let {document} = this.window; |
333 var stylesheet = event.target.sheet; | 378 for (let pattern of this.patterns) |
379 { | |
380 for (let selector of evaluate(pattern.selectors, | |
381 0, "", document, cssStyles)) | |
382 { | |
383 if (!pattern.selectors.some(s => s.requiresHiding)) | |
384 { | |
385 selectors.push(selector); | |
386 selectorFilters.push(pattern.text); | |
387 } | |
388 else | |
389 { | |
390 for (let element of document.querySelectorAll(selector)) | |
391 { | |
392 elements.push(element); | |
393 elementFilters.push(pattern.text); | |
394 } | |
395 } | |
396 } | |
397 } | |
398 | |
399 this.addSelectorsFunc(selectors, selectorFilters); | |
400 this.hideElemsFunc(elements, elementFilters); | |
401 }, | |
402 | |
403 onLoad(event) | |
404 { | |
405 let stylesheet = event.target.sheet; | |
334 if (stylesheet) | 406 if (stylesheet) |
335 this.addSelectors([stylesheet]); | 407 this.addSelectors([stylesheet]); |
336 this.hideElements([stylesheet]); | 408 }, |
337 }, | 409 |
338 | 410 apply() |
339 apply: function() | 411 { |
340 { | 412 this.getFiltersFunc(patterns => |
341 this.getFiltersFunc(function(patterns) | 413 { |
342 { | 414 let oldReportError = reportError; |
343 this.propSelPatterns = []; | 415 reportError = error => this.window.console.error(error); |
344 this.pseudoHasPatterns = []; | 416 |
345 for (var i = 0; i < patterns.length; i++) | 417 this.patterns = []; |
418 for (let pattern of patterns) | |
346 { | 419 { |
347 var pattern = patterns[i]; | 420 let selectors = parseSelector(pattern.selector); |
348 var parsed = unwrapPattern(pattern); | 421 if (selectors != null && selectors.length > 0) |
349 if (parsed == undefined) | 422 this.patterns.push({selectors, text: pattern.text}); |
350 continue; | |
351 if (parsed.type == "props") | |
352 { | |
353 this.propSelPatterns.push(parsed); | |
354 } | |
355 else if (parsed.type == "has") | |
356 { | |
357 this.pseudoHasPatterns.push(parsed); | |
358 } | |
359 } | 423 } |
360 | 424 |
361 if (this.pseudoHasPatterns.length > 0 || this.propSelPatterns.length > 0) | 425 if (this.patterns.length > 0) |
362 { | 426 { |
363 var document = this.window.document; | 427 let {document} = this.window; |
364 this.addSelectors(document.styleSheets); | 428 this.addSelectors(document.styleSheets); |
365 this.hideElements(document.styleSheets); | |
366 document.addEventListener("load", this.onLoad.bind(this), true); | 429 document.addEventListener("load", this.onLoad.bind(this), true); |
367 } | 430 } |
368 }.bind(this)); | 431 reportError = oldReportError; |
432 }); | |
369 } | 433 } |
370 }; | 434 }; |
LEFT | RIGHT |