mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
caf1dccaa5
--HG-- extra : rebase_source : 50e3996d42073daa4c9f68f8c263b8b8106f3d84
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
next();
|
|
}
|
|
|
|
var uris = [
|
|
"about:blank",
|
|
"about:sessionrestore",
|
|
"about:privatebrowsing",
|
|
];
|
|
|
|
function next() {
|
|
var tab = gBrowser.addTab();
|
|
var uri = uris.shift();
|
|
|
|
if (uri == "about:blank") {
|
|
detach();
|
|
} else {
|
|
let browser = tab.linkedBrowser;
|
|
browser.addEventListener("load", function () {
|
|
browser.removeEventListener("load", arguments.callee, true);
|
|
detach();
|
|
}, true);
|
|
browser.loadURI(uri);
|
|
}
|
|
|
|
function detach() {
|
|
var win = gBrowser.replaceTabWithWindow(tab);
|
|
win.addEventListener("load", function () {
|
|
win.removeEventListener("load", arguments.callee, false);
|
|
|
|
var _delayedStartup = win.delayedStartup;
|
|
win.delayedStartup = function delayedStartup() {
|
|
_delayedStartup.apply(win, arguments);
|
|
win.delayedStartup = _delayedStartup;
|
|
|
|
is(win.gBrowser.currentURI.spec, uri, uri + ": uri loaded in detached tab");
|
|
is(win.document.activeElement, win.gBrowser.selectedBrowser, uri + ": browser is focused");
|
|
is(win.gURLBar.value, "", uri + ": urlbar is empty");
|
|
ok(win.gURLBar.placeholder, uri + ": placeholder text is present");
|
|
|
|
win.close();
|
|
if (uris.length)
|
|
next();
|
|
else
|
|
executeSoon(finish);
|
|
};
|
|
}, false);
|
|
}
|
|
}
|