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 13 matching lines...) Expand all Loading... |
24 const {ElemHideEmulation} = require("elemHideEmulation"); | 24 const {ElemHideEmulation} = require("elemHideEmulation"); |
25 const {checkWhitelisted} = require("whitelisting"); | 25 const {checkWhitelisted} = require("whitelisting"); |
26 const {extractHostFromFrame} = require("url"); | 26 const {extractHostFromFrame} = require("url"); |
27 const {port} = require("messaging"); | 27 const {port} = require("messaging"); |
28 const devtools = require("devtools"); | 28 const devtools = require("devtools"); |
29 | 29 |
30 const userStyleSheetsSupported = "extensionTypes" in browser && | 30 const userStyleSheetsSupported = "extensionTypes" in browser && |
31 "CSSOrigin" in browser.extensionTypes; | 31 "CSSOrigin" in browser.extensionTypes; |
32 const selectorGroupSize = 1024; | 32 const selectorGroupSize = 1024; |
33 | 33 |
| 34 function* splitSelectors(selectors) |
| 35 { |
| 36 // Chromium's Blink engine supports only up to 8,192 simple selectors, and |
| 37 // even fewer compound selectors, in a rule. The exact number of selectors |
| 38 // that would work depends on their sizes (e.g. "#foo .bar" has a size of 2). |
| 39 // Since we don't know the sizes of the selectors here, we simply split them |
| 40 // into groups of 1,024, based on the reasonable assumption that the average |
| 41 // selector won't have a size greater than 8. The alternative would be to |
| 42 // calculate the sizes of the selectors and divide them up accordingly, but |
| 43 // this approach is more efficient and has worked well in practice. In theory |
| 44 // this could still lead to some selectors not working on Chromium, but it is |
| 45 // highly unlikely. |
| 46 // See issue #6298 and https://crbug.com/804179 |
| 47 for (let i = 0; i < selectors.length; i += selectorGroupSize) |
| 48 yield selectors.slice(i, i + selectorGroupSize); |
| 49 } |
| 50 |
| 51 function* createRules(selectors) |
| 52 { |
| 53 for (let selectorGroup of splitSelectors(selectors)) |
| 54 yield selectorGroup.join(", ") + " {display: none !important;}"; |
| 55 } |
| 56 |
34 function createStyleSheet(selectors) | 57 function createStyleSheet(selectors) |
35 { | 58 { |
36 let styleSheet = ""; | 59 return Array.from(createRules(selectors)).join("\n"); |
37 | |
38 // Chromium's Blink engine supports only up to 8,192 selectors; more | |
39 // specifically, it ignores any selectors that start at index 8192 or beyond | |
40 // in the list of plain selectors. In order to avoid spilling outside of this | |
41 // range, we simply add multiple rules in groups of up to 1,024 selectors | |
42 // each. | |
43 // See issue #6298 and https://crbug.com/804179 | |
44 for (let i = 0; i < selectors.length; i += selectorGroupSize) | |
45 { | |
46 styleSheet += selectors.slice(i, i + selectorGroupSize).join(", ") + | |
47 " {display: none !important;}\n"; | |
48 } | |
49 | |
50 return styleSheet; | |
51 } | 60 } |
52 | 61 |
53 function addStyleSheet(tabId, frameId, styleSheet) | 62 function addStyleSheet(tabId, frameId, styleSheet) |
54 { | 63 { |
55 browser.tabs.insertCSS(tabId, { | 64 browser.tabs.insertCSS(tabId, { |
56 code: styleSheet, | 65 code: styleSheet, |
57 cssOrigin: "user", | 66 cssOrigin: "user", |
58 frameId, | 67 frameId, |
59 matchAboutBlank: true, | 68 matchAboutBlank: true, |
60 runAt: "document_start" | 69 runAt: "document_start" |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 response.selectors = selectors; | 143 response.selectors = selectors; |
135 | 144 |
136 return response; | 145 return response; |
137 }); | 146 }); |
138 | 147 |
139 port.on("elemhide.injectSelectors", (message, sender) => | 148 port.on("elemhide.injectSelectors", (message, sender) => |
140 { | 149 { |
141 updateFrameStyles(sender.page.id, sender.frame.id, message.selectors, | 150 updateFrameStyles(sender.page.id, sender.frame.id, message.selectors, |
142 message.groupName); | 151 message.groupName); |
143 }); | 152 }); |
LEFT | RIGHT |