mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-06 02:42:33 +01:00
Test-fix for #1149
This commit is contained in:
parent
8ea7dc54a7
commit
e762a29d30
15
platform/firefox/bootstrap.js
vendored
15
platform/firefox/bootstrap.js
vendored
@ -54,12 +54,23 @@ function startup(data, reason) {
|
||||
let appShell = Components.classes['@mozilla.org/appshell/appShellService;1']
|
||||
.getService(Components.interfaces.nsIAppShellService);
|
||||
|
||||
let onReady = function(e) {
|
||||
if ( e ) {
|
||||
let onReady = function (e) {
|
||||
console.log("uBlock> onReady");
|
||||
|
||||
if (e) {
|
||||
console.log("uBlock> removing event listener " + e.type + " from " + this);
|
||||
|
||||
this.removeEventListener(e.type, onReady);
|
||||
}
|
||||
|
||||
let hiddenDoc = appShell.hiddenDOMWindow.document;
|
||||
|
||||
if (hiddenDoc.readyState === 'loading') {
|
||||
console.log("uBlock> hiddenDOMWindow not ready, waiting");
|
||||
hiddenDoc.addEventListener('DOMContentLoaded', onReady);
|
||||
return;
|
||||
}
|
||||
|
||||
bgProcess = hiddenDoc.documentElement.appendChild(
|
||||
hiddenDoc.createElementNS('http://www.w3.org/1999/xhtml', 'iframe')
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user