LEFT | RIGHT |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 this.timeout = null; | 251 this.timeout = null; |
252 this.observer = new MutationObserver(this.observe.bind(this)); | 252 this.observer = new MutationObserver(this.observe.bind(this)); |
253 this.trace = this.trace.bind(this); | 253 this.trace = this.trace.bind(this); |
254 | 254 |
255 if (document.readyState == "loading") | 255 if (document.readyState == "loading") |
256 document.addEventListener("DOMContentLoaded", this.trace); | 256 document.addEventListener("DOMContentLoaded", this.trace); |
257 else | 257 else |
258 this.trace(); | 258 this.trace(); |
259 } | 259 } |
260 ElementHidingTracer.prototype = { | 260 ElementHidingTracer.prototype = { |
261 addSelectors(selectors, filters) | 261 addSelectors(selectors) |
262 { | 262 { |
263 let pairs = selectors.map((sel, i) => [sel, filters && filters[i]]); | |
264 | |
265 if (document.readyState != "loading") | 263 if (document.readyState != "loading") |
266 this.checkNodes([document], pairs); | 264 this.checkNodes([document], selectors); |
267 | 265 |
268 this.selectors.push(...pairs); | 266 this.selectors.push(...selectors); |
269 }, | 267 }, |
270 | 268 |
271 checkNodes(nodes, pairs) | 269 checkNodes(nodes, selectors) |
272 { | 270 { |
273 let selectors = []; | 271 let effectiveSelectors = []; |
274 let filters = []; | 272 |
275 | 273 for (let selector of selectors) |
276 for (let [selector, filter] of pairs) | |
277 { | 274 { |
278 nodes: for (let node of nodes) | 275 nodes: for (let node of nodes) |
279 { | 276 { |
280 for (let element of node.querySelectorAll(selector)) | 277 for (let element of node.querySelectorAll(selector)) |
281 { | 278 { |
282 // Only consider selectors that actually have an effect on the | 279 // Only consider selectors that actually have an effect on the |
283 // computed styles, and aren't overridden by rules with higher | 280 // computed styles, and aren't overridden by rules with higher |
284 // priority, or haven't been circumvented in a different way. | 281 // priority, or haven't been circumvented in a different way. |
285 if (getComputedStyle(element).display == "none") | 282 if (getComputedStyle(element).display == "none") |
286 { | 283 { |
287 // For regular element hiding, we don't know the exact filter, | 284 effectiveSelectors.push(selector); |
288 // but the background page can find it with the given selector. | |
289 // In case of element hiding emulation, the generated selector | |
290 // we got here is different from the selector part of the filter, | |
291 // but in this case we can send the whole filter text instead. | |
292 if (filter) | |
293 filters.push(filter); | |
294 else | |
295 selectors.push(selector); | |
296 | |
297 break nodes; | 285 break nodes; |
298 } | 286 } |
299 } | 287 } |
300 } | 288 } |
301 } | 289 } |
302 | 290 |
303 if (selectors.length > 0 || filters.length > 0) | 291 if (effectiveSelectors.length > 0) |
304 { | 292 { |
305 browser.runtime.sendMessage({ | 293 browser.runtime.sendMessage({ |
306 type: "hitLogger.traceElemHide", | 294 type: "hitLogger.traceElemHide", |
307 selectors, filters | 295 selectors: effectiveSelectors, |
| 296 filters: [] |
308 }); | 297 }); |
309 } | 298 } |
310 }, | 299 }, |
311 | 300 |
312 onTimeout() | 301 onTimeout() |
313 { | 302 { |
314 this.checkNodes(this.changedNodes, this.selectors); | 303 this.checkNodes(this.changedNodes, this.selectors); |
315 this.changedNodes = []; | 304 this.changedNodes = []; |
316 this.timeout = null; | 305 this.timeout = null; |
317 }, | 306 }, |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 document.removeEventListener("DOMContentLoaded", this.trace); | 379 document.removeEventListener("DOMContentLoaded", this.trace); |
391 this.observer.disconnect(); | 380 this.observer.disconnect(); |
392 clearTimeout(this.timeout); | 381 clearTimeout(this.timeout); |
393 } | 382 } |
394 }; | 383 }; |
395 | 384 |
396 function ContentFiltering() | 385 function ContentFiltering() |
397 { | 386 { |
398 this.styles = new Map(); | 387 this.styles = new Map(); |
399 this.tracer = null; | 388 this.tracer = null; |
400 this.inline = true; | |
401 | 389 |
402 this.elemHideEmulation = new ElemHideEmulation(this.hideElements.bind(this)); | 390 this.elemHideEmulation = new ElemHideEmulation(this.hideElements.bind(this)); |
403 } | 391 } |
404 ContentFiltering.prototype = { | 392 ContentFiltering.prototype = { |
405 addStyleSheetInline(styleSheet, groupName = "standard", appendOnly = false) | 393 addRulesInline(rules, groupName = "standard", appendOnly = false) |
406 { | 394 { |
407 let style = this.styles.get(groupName); | 395 let style = this.styles.get(groupName); |
| 396 |
| 397 if (style && !appendOnly) |
| 398 { |
| 399 while (style.sheet.cssRules.length > 0) |
| 400 style.sheet.deleteRule(0); |
| 401 } |
| 402 |
| 403 if (rules.length == 0) |
| 404 return; |
408 | 405 |
409 if (!style) | 406 if (!style) |
410 { | 407 { |
411 // Create <style> element lazily, only if we add styles. Add it to | 408 // Create <style> element lazily, only if we add styles. Add it to |
412 // the <head> or <html> element. If we have injected a style element | 409 // the <head> or <html> element. If we have injected a style element |
413 // before that has been removed (the sheet property is null), create a | 410 // before that has been removed (the sheet property is null), create a |
414 // new one. | 411 // new one. |
415 style = document.createElement("style"); | 412 style = document.createElement("style"); |
416 (document.head || document.documentElement).appendChild(style); | 413 (document.head || document.documentElement).appendChild(style); |
417 | 414 |
418 // It can happen that the frame already navigated to a different | 415 // It can happen that the frame already navigated to a different |
419 // document while we were waiting for the background page to respond. | 416 // document while we were waiting for the background page to respond. |
420 // In that case the sheet property may stay null, after adding the | 417 // In that case the sheet property may stay null, after adding the |
421 // <style> element. | 418 // <style> element. |
422 if (!style.sheet) | 419 if (!style.sheet) |
423 return; | 420 return; |
424 | 421 |
425 this.styles.set(groupName, style); | 422 this.styles.set(groupName, style); |
426 } | 423 } |
427 | 424 |
428 if (appendOnly) | 425 for (let rule of rules) |
429 style.textContent += styleSheet; | 426 style.sheet.insertRule(rule, style.sheet.cssRules.length); |
430 else | |
431 style.textContent = styleSheet; | |
432 }, | 427 }, |
433 | 428 |
434 addSelectors(selectors, groupName = "standard", appendOnly = false) | 429 addSelectors(selectors, groupName = "standard", appendOnly = false) |
435 { | 430 { |
436 if (this.inline) | 431 browser.runtime.sendMessage({ |
437 { | 432 type: "content.injectSelectors", |
438 // Insert the style rules inline if we have been instructed by the | 433 selectors, |
439 // background page to do so. This is rarely the case, except on platforms | 434 groupName, |
440 // that do not support user stylesheets via the browser.tabs.insertCSS API | 435 appendOnly |
441 // (Firefox <53, Chrome <66, and Edge). | 436 }, |
442 // Once all supported platforms have implemented this API, we can remove | 437 rules => |
443 // the code below. See issue #5090. | 438 { |
444 // Related Chrome and Firefox issues: | 439 if (rules) |
445 // https://bugs.chromium.org/p/chromium/issues/detail?id=632009 | 440 { |
446 // https://bugzilla.mozilla.org/show_bug.cgi?id=1310026 | 441 // Insert the rules inline if we have been instructed by the background |
447 this.addStyleSheetInline(selectors.join(", ") + | 442 // page to do so. This is rarely the case, except on platforms that do |
448 " {display: none !important;}\n", | 443 // not support user stylesheets via the browser.tabs.insertCSS API |
449 groupName, | 444 // (Firefox <53, Chrome <66, and Edge). |
450 appendOnly); | 445 // Once all supported platforms have implemented this API, we can remove |
451 } | 446 // the code below. See issue #5090. |
452 else | 447 // Related Chrome and Firefox issues: |
453 { | 448 // https://bugs.chromium.org/p/chromium/issues/detail?id=632009 |
454 browser.runtime.sendMessage({ | 449 // https://bugzilla.mozilla.org/show_bug.cgi?id=1310026 |
455 type: "content.injectSelectors", | 450 this.addRulesInline(rules, groupName, appendOnly); |
456 selectors, | 451 } |
457 groupName, | 452 }); |
458 appendOnly | |
459 }); | |
460 } | |
461 }, | 453 }, |
462 | 454 |
463 hideElements(elements, filters) | 455 hideElements(elements, filters) |
464 { | 456 { |
465 for (let element of elements) | 457 for (let element of elements) |
466 hideElement(element); | 458 hideElement(element); |
467 | 459 |
468 if (this.tracer) | 460 if (this.tracer) |
469 { | 461 { |
470 browser.runtime.sendMessage({ | 462 browser.runtime.sendMessage({ |
(...skipping 12 matching lines...) Expand all Loading... |
483 }, | 475 }, |
484 response => | 476 response => |
485 { | 477 { |
486 if (this.tracer) | 478 if (this.tracer) |
487 this.tracer.disconnect(); | 479 this.tracer.disconnect(); |
488 this.tracer = null; | 480 this.tracer = null; |
489 | 481 |
490 if (response.trace) | 482 if (response.trace) |
491 this.tracer = new ElementHidingTracer(); | 483 this.tracer = new ElementHidingTracer(); |
492 | 484 |
493 this.inline = response.inline; | 485 if (response.inline) |
494 | 486 this.addRulesInline(response.rules); |
495 if (this.inline) | |
496 this.addStyleSheetInline(response.styleSheet.code); | |
497 | 487 |
498 if (this.tracer) | 488 if (this.tracer) |
499 this.tracer.addSelectors(response.styleSheet.selectors); | 489 this.tracer.addSelectors(response.selectors); |
500 | 490 |
501 this.elemHideEmulation.apply(response.emulatedPatterns); | 491 this.elemHideEmulation.apply(response.emulatedPatterns); |
502 }); | 492 }); |
503 } | 493 } |
504 }; | 494 }; |
505 | 495 |
506 if (document instanceof HTMLDocument) | 496 if (document instanceof HTMLDocument) |
507 { | 497 { |
508 checkSitekey(); | 498 checkSitekey(); |
509 | 499 |
(...skipping 10 matching lines...) Expand all Loading... |
520 let element = event.target; | 510 let element = event.target; |
521 if (/^i?frame$/.test(element.localName)) | 511 if (/^i?frame$/.test(element.localName)) |
522 checkCollapse(element); | 512 checkCollapse(element); |
523 }, true); | 513 }, true); |
524 } | 514 } |
525 | 515 |
526 window.checkCollapse = checkCollapse; | 516 window.checkCollapse = checkCollapse; |
527 window.contentFiltering = contentFiltering; | 517 window.contentFiltering = contentFiltering; |
528 window.typeMap = typeMap; | 518 window.typeMap = typeMap; |
529 window.getURLsFromElement = getURLsFromElement; | 519 window.getURLsFromElement = getURLsFromElement; |
LEFT | RIGHT |