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

Unified Diff: include.preload.js

Issue 29436567: Issue 3200 - Delay initialization for prerendered documents (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Created May 11, 2017, 7:11 p.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 | safari/ext/background.js » ('j') | 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
@@ -580,17 +580,34 @@
};
if (document instanceof HTMLDocument)
{
checkSitekey();
wrapWebSocket();
var elemhide = new ElemHide();
- elemhide.apply();
+
+ if (document.visibilityState == "prerender")
+ {
+ // For prerendered documents, wait until the document is made visible. We
+ // do not have access to the page property of the SafariBrowserTab object
+ // associated with this document until it is visible. Without the page
+ // property, we cannot get a response from the background page.
+ document.addEventListener("visibilitychange", function onVisibilitychange()
+ {
+ document.removeEventListener("visibilitychange", onVisibilitychange);
+
+ elemhide.apply();
+ });
+ }
+ else
+ {
+ elemhide.apply();
+ }
document.addEventListener("error", function(event)
{
checkCollapse(event.target);
}, true);
document.addEventListener("load", function(event)
{
« no previous file with comments | « no previous file | safari/ext/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld