OLD | NEW |
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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 | 357 |
358 createShadowTree() | 358 createShadowTree() |
359 { | 359 { |
360 // Use Shadow DOM if available as to not mess with with web pages that | 360 // Use Shadow DOM if available as to not mess with with web pages that |
361 // rely on the order of their own <style> tags (#309). However, creating | 361 // rely on the order of their own <style> tags (#309). However, creating |
362 // a shadow root breaks running CSS transitions. So we have to create | 362 // a shadow root breaks running CSS transitions. So we have to create |
363 // the shadow root before transistions might start (#452). | 363 // the shadow root before transistions might start (#452). |
364 if (!("createShadowRoot" in document.documentElement)) | 364 if (!("createShadowRoot" in document.documentElement)) |
365 return null; | 365 return null; |
366 | 366 |
| 367 // Use Shadow DOM only on Chrome version 65 and lower. Firefox's Shadow |
| 368 // DOM v0 implementation is slightly different (e.g. no <shadow> element), |
| 369 // while Chrome is deprecating Shadow DOM v0 in favor of Shadow DOM v1 and |
| 370 // user style sheets. |
| 371 let {application, applicationVersion} = require("info"); |
| 372 if (application != "chrome" || parseInt(applicationVersion) > 65) |
| 373 return null; |
| 374 |
367 // Using shadow DOM causes issues on some Google websites, | 375 // Using shadow DOM causes issues on some Google websites, |
368 // including Google Docs, Gmail and Blogger (#1770, #2602, #2687). | 376 // including Google Docs, Gmail and Blogger (#1770, #2602, #2687). |
369 if (/\.(?:google|blogger)\.com$/.test(document.domain)) | 377 if (/\.(?:google|blogger)\.com$/.test(document.domain)) |
370 return null; | 378 return null; |
371 | 379 |
372 // Finally since some users have both AdBlock and Adblock Plus installed we | 380 // Finally since some users have both AdBlock and Adblock Plus installed we |
373 // have to consider how the two extensions interact. For example we want to | 381 // have to consider how the two extensions interact. For example we want to |
374 // avoid creating the shadowRoot twice. | 382 // avoid creating the shadowRoot twice. |
375 let shadow = document.documentElement.shadowRoot || | 383 let shadow = document.documentElement.shadowRoot || |
376 document.documentElement.createShadowRoot(); | 384 document.documentElement.createShadowRoot(); |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 let element = event.target; | 549 let element = event.target; |
542 if (/^i?frame$/.test(element.localName)) | 550 if (/^i?frame$/.test(element.localName)) |
543 checkCollapse(element); | 551 checkCollapse(element); |
544 }, true); | 552 }, true); |
545 } | 553 } |
546 | 554 |
547 window.checkCollapse = checkCollapse; | 555 window.checkCollapse = checkCollapse; |
548 window.elemhide = elemhide; | 556 window.elemhide = elemhide; |
549 window.typeMap = typeMap; | 557 window.typeMap = typeMap; |
550 window.getURLsFromElement = getURLsFromElement; | 558 window.getURLsFromElement = getURLsFromElement; |
OLD | NEW |