| Index: include.preload.js |
| =================================================================== |
| --- a/include.preload.js |
| +++ b/include.preload.js |
| @@ -220,17 +220,17 @@ |
| { |
| if (collapse) |
| { |
| if (selector) |
| { |
| if (!collapsingSelectors.has(selector)) |
| { |
| collapsingSelectors.add(selector); |
| - contentFiltering.addSelectors([selector], null, "collapsing", true); |
| + contentFiltering.addSelectors([selector], "collapsing", true); |
| } |
| } |
| else |
| { |
| hideElement(element); |
| } |
| } |
| } |
| @@ -392,39 +392,24 @@ |
| clearTimeout(this.timeout); |
| } |
| }; |
| function ContentFiltering() |
| { |
| this.styles = new Map(); |
| this.tracer = null; |
| - this.inline = true; |
|
Sebastian Noack
2018/09/29 14:36:13
Nit: The blank line here no longer seems to help t
|
| - this.elemHideEmulation = new ElemHideEmulation( |
| - () => {}, |
| - this.hideElements.bind(this) |
| - ); |
| + this.elemHideEmulation = new ElemHideEmulation(this.hideElements.bind(this)); |
| } |
| ContentFiltering.prototype = { |
| - selectorGroupSize: 1024, |
| - |
| - addSelectorsInline(selectors, groupName, appendOnly = false) |
| + addStyleSheetInline(styleSheet, groupName = "standard", appendOnly = false) |
| { |
| let style = this.styles.get(groupName); |
| - if (style && !appendOnly) |
| - { |
| - while (style.sheet.cssRules.length > 0) |
| - style.sheet.deleteRule(0); |
| - } |
| - |
| - if (selectors.length == 0) |
| - return; |
| - |
| if (!style) |
| { |
| // Create <style> element lazily, only if we add styles. Add it to |
| // the <head> or <html> element. If we have injected a style element |
| // before that has been removed (the sheet property is null), create a |
| // new one. |
| style = document.createElement("style"); |
| (document.head || document.documentElement).appendChild(style); |
| @@ -434,64 +419,46 @@ |
| // In that case the sheet property may stay null, after adding the |
| // <style> element. |
| if (!style.sheet) |
| return; |
| this.styles.set(groupName, style); |
| } |
| - // Chromium's Blink engine supports only up to 8,192 simple selectors, and |
| - // even fewer compound selectors, in a rule. The exact number of selectors |
| - // that would work depends on their sizes (e.g. "#foo .bar" has a |
| - // size of 2). Since we don't know the sizes of the selectors here, we |
| - // simply split them into groups of 1,024, based on the reasonable |
| - // assumption that the average selector won't have a size greater than 8. |
| - // The alternative would be to calculate the sizes of the selectors and |
| - // divide them up accordingly, but this approach is more efficient and has |
| - // worked well in practice. In theory this could still lead to some |
| - // selectors not working on Chromium, but it is highly unlikely. |
| - // See issue #6298 and https://crbug.com/804179 |
| - for (let i = 0; i < selectors.length; i += this.selectorGroupSize) |
| - { |
| - let selector = selectors.slice(i, i + this.selectorGroupSize).join(", "); |
| - style.sheet.insertRule(selector + "{display: none !important;}", |
| - style.sheet.cssRules.length); |
| - } |
| + if (appendOnly) |
| + style.textContent += styleSheet; |
|
Sebastian Noack
2018/09/29 14:36:13
I didn't benchmark it, but I'd assume using insert
Manish Jethani
2018/09/29 15:58:48
The problem with using `insertRule` here: we don't
Sebastian Noack
2018/09/29 16:39:30
How about making the function in core return an ar
Manish Jethani
2018/09/29 17:28:04
That's not really an option, it would destroy the
Sebastian Noack
2018/09/29 21:01:49
How many ms would that add to the bill if core wil
Manish Jethani
2018/09/30 08:06:21
If you run the JS profiler in DevTools with the `g
Sebastian Noack
2018/09/30 14:19:24
This doesn't seem to only be about element collaps
Manish Jethani
2018/10/01 14:01:36
If assigning `textContent` is an issue, one other
Manish Jethani
2018/10/01 14:24:02
OK, I have a solution that would satisfy all cases
Sebastian Noack
2018/10/01 19:42:27
Sounds good!
|
| + else |
| + style.textContent = styleSheet; |
| }, |
| - addSelectors(selectors, filters, groupName = "emulated", appendOnly = false) |
| + addSelectors(selectors, groupName = "standard", appendOnly = false) |
| { |
| - if (this.inline) |
| + browser.runtime.sendMessage({ |
| + type: "content.injectSelectors", |
| + selectors, |
| + groupName, |
| + appendOnly |
| + }, |
| + styleSheet => |
| { |
| - // Insert the style rules inline if we have been instructed by the |
| - // background page to do so. This is usually the case, except on platforms |
| - // that do support user stylesheets via the browser.tabs.insertCSS API |
| - // (Firefox 53 onwards for now and possibly Chrome in the near future). |
| - // Once all supported platforms have implemented this API, we can remove |
| - // the code below. See issue #5090. |
| - // Related Chrome and Firefox issues: |
| - // https://bugs.chromium.org/p/chromium/issues/detail?id=632009 |
| - // https://bugzilla.mozilla.org/show_bug.cgi?id=1310026 |
| - this.addSelectorsInline(selectors, groupName, appendOnly); |
| - } |
| - else |
| - { |
| - browser.runtime.sendMessage({ |
| - type: "content.injectSelectors", |
| - selectors, |
| - groupName, |
| - appendOnly |
| - }); |
| - } |
| - |
| - // Only trace selectors that are based directly on hiding filters |
| - // (i.e. leave out collapsing selectors). |
| - if (this.tracer && groupName != "collapsing") |
| - this.tracer.addSelectors(selectors, filters); |
|
Sebastian Noack
2018/09/29 14:36:13
It seems ElementHidingTracer.addSelectors() is nev
Manish Jethani
2018/09/29 15:58:48
ElementHidingTracer is a whole pandora's box. If i
Sebastian Noack
2018/09/29 16:39:30
What I was thinking of is this:
diff -r ae52536f7
Manish Jethani
2018/09/29 17:28:04
OK, but since I'm not the author of these changes
Sebastian Noack
2018/09/29 21:01:49
Well, your adapting for core changes here that mak
Manish Jethani
2018/09/30 08:36:38
The local `selectors` variable here needs to be re
|
| + if (styleSheet) |
| + { |
| + // Insert the style sheet inline if we have been instructed by the |
| + // background page to do so. This is rarely the case, except on |
| + // platforms that do not support user stylesheets via the |
| + // browser.tabs.insertCSS API (Firefox <53, Chrome <66, and Edge). |
| + // Once all supported platforms have implemented this API, we can remove |
| + // the code below. See issue #5090. |
| + // Related Chrome and Firefox issues: |
| + // https://bugs.chromium.org/p/chromium/issues/detail?id=632009 |
| + // https://bugzilla.mozilla.org/show_bug.cgi?id=1310026 |
| + this.addStyleSheetInline(styleSheet, groupName, appendOnly); |
| + } |
| + }); |
| }, |
| hideElements(elements, filters) |
| { |
| for (let element of elements) |
| hideElement(element); |
| if (this.tracer) |
| @@ -514,23 +481,21 @@ |
| { |
| if (this.tracer) |
| this.tracer.disconnect(); |
| this.tracer = null; |
| if (response.trace) |
| this.tracer = new ElementHidingTracer(); |
| - this.inline = response.inline; |
| - |
| - if (this.inline) |
| - this.addSelectorsInline(response.selectors, "standard"); |
| + if (response.inline) |
| + this.addStyleSheetInline(response.styleSheet.code); |
| if (this.tracer) |
| - this.tracer.addSelectors(response.selectors); |
| + this.tracer.addSelectors(response.styleSheet.selectors); |
| this.elemHideEmulation.apply(response.emulatedPatterns); |
| }); |
| } |
| }; |
| if (document instanceof HTMLDocument) |
| { |