Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 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 11 matching lines...) Expand all Loading... | |
22 { | 22 { |
23 if (selectors.length == 0) | 23 if (selectors.length == 0) |
24 return; | 24 return; |
25 | 25 |
26 var style = document.createElement("style"); | 26 var style = document.createElement("style"); |
27 style.setAttribute("type", "text/css"); | 27 style.setAttribute("type", "text/css"); |
28 | 28 |
29 // Use Shadow DOM if available to don't mess with web pages that | 29 // Use Shadow DOM if available to don't mess with web pages that |
30 // rely on the order of their own <style> tags. However | 30 // rely on the order of their own <style> tags. However |
31 // the <shadow> element is broken in Chrome 32.0.1700 (#309) | 31 // the <shadow> element is broken in Chrome 32.0.1700 (#309) |
32 if ("webkitCreateShadowRoot" in document.documentElement && !/\bChrome\/32\.0\ .1700\b/.test(navigator.userAgent)) | 32 if ("webkitCreateShadowRoot" in document.documentElement && !(/\bChrome\/32\.0 \.(\d+)\b/.test(navigator.userAgent) && RegExp.$1 >= 1700)) |
Thomas Greiner
2014/04/17 15:55:57
RegExp.$1 is deprecated (see https://developer.moz
Thomas Greiner
2014/04/17 15:55:57
The match that you get from the regular expression
Sebastian Noack
2014/04/17 16:16:35
Done.
| |
33 { | 33 { |
34 var shadow = document.documentElement.webkitCreateShadowRoot(); | 34 var shadow = document.documentElement.webkitCreateShadowRoot(); |
35 shadow.appendChild(document.createElement("shadow")); | 35 shadow.appendChild(document.createElement("shadow")); |
36 shadow.appendChild(style); | 36 shadow.appendChild(style); |
37 | 37 |
38 try | 38 try |
39 { | 39 { |
40 document.querySelector("::content"); | 40 document.querySelector("::content"); |
41 | 41 |
42 for (var i = 0; i < selectors.length; i++) | 42 for (var i = 0; i < selectors.length; i++) |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
122 ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr}); | 122 ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr}); |
123 | 123 |
124 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); | 124 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); |
125 } | 125 } |
126 | 126 |
127 // In Chrome 18 the document might not be initialized yet | 127 // In Chrome 18 the document might not be initialized yet |
128 if (document.documentElement) | 128 if (document.documentElement) |
129 init(); | 129 init(); |
130 else | 130 else |
131 window.setTimeout(init, 0); | 131 window.setTimeout(init, 0); |
OLD | NEW |