Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: include.preload.js

Issue 29770568: Issue 6645 - Collapse elements through user style sheets if possible (Closed)
Patch Set: Got rif of hasSrc variable Created May 10, 2018, 11:45 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include.preload.js
===================================================================
--- a/include.preload.js
+++ b/include.preload.js
@@ -131,41 +131,42 @@
return urls;
}
-function isCollapsibleMediaElement(element, mediatype)
+function getSelectorForBlockedElement(element)
{
- if (mediatype != "MEDIA")
- return false;
-
- if (!element.getAttribute("src"))
- return false;
+ // Microsoft Edge does not support CSS.escape(). However, it doesn't
+ // support user style sheets either. So the selector would be added
+ // with an author style sheet anyway, which doesn't provide any benefits.
+ if (!("escape" in CSS))
+ return null;
- for (let child of element.children)
+ // Setting the "display" CSS property to "none" doesn't have any effect on
+ // <frame> elements (in framesets). So we have to hide it inline through
+ // the "visibility" CSS property.
+ if (element.localName == "frame")
+ return null;
+
+ // If the <video> or <audio> element contains any <source> or <track>
+ // children, we cannot address it in CSS by the source URL; in that case we
+ // don't "collapse" it using a CSS selector but rather hide it directly by
+ // setting the style="..." attribute.
+ if (element.localName == "video" || element.localName == "audio")
{
- // If the <video> or <audio> element contains any <source> or <track>
- // children, we cannot address it in CSS by the source URL; in that case we
- // don't "collapse" it using a CSS selector but rather hide it directly by
- // setting the style="..." attribute.
- if (child.localName == "source" || child.localName == "track")
- return false;
+ for (let child of element.children)
+ {
+ if (child.localName == "source" || child.localName == "track")
+ return null;
+ }
}
- return true;
-}
-
-function collapseMediaElement(element, srcValue)
-{
- if (!srcValue)
- return;
+ let selector = "";
+ for (let attr of ["src", "srcset"])
+ {
+ let value = element.getAttribute(attr);
+ if (value && attr in element)
+ selector += "[" + attr + "=" + CSS.escape(value) + "]";
+ }
- let selector = element.localName + "[src=" + CSS.escape(srcValue) + "]";
-
- // Adding selectors is expensive so do it only if we really have a new
- // selector.
- if (!collapsingSelectors.has(selector))
- {
- collapsingSelectors.add(selector);
- elemhide.addSelectors([selector], null, "collapsing", true);
- }
+ return selector ? element.localName + selector : null;
}
function hideElement(element)
@@ -205,11 +206,9 @@
if (urls.length == 0)
return;
- let collapsibleMediaElement = isCollapsibleMediaElement(element, mediatype);
-
- // Save the value of the src attribute because it can change between now and
- // when we get the response from the background page.
- let srcValue = collapsibleMediaElement ? element.getAttribute("src") : null;
+ // Construct the selector here, because the attributes it relies on can change
+ // between now and when we get the response from the background page.
+ let selector = getSelectorForBlockedElement(element);
browser.runtime.sendMessage(
{
@@ -222,10 +221,18 @@
{
if (collapse)
{
- if (collapsibleMediaElement)
- collapseMediaElement(element, srcValue);
+ if (selector)
+ {
+ if (!collapsingSelectors.has(selector))
+ {
+ collapsingSelectors.add(selector);
+ elemhide.addSelectors([selector], null, "collapsing", true);
+ }
+ }
else
+ {
hideElement(element);
+ }
}
}
);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld