fune/browser/base/content/test/urlbar/browser_locationBarExternalLoad.js
Dão Gottwald 8765171bac Bug 1396205 - Show the Go button only when the user started typing in the location bar. ui-r=shorlander r=daleharvey
MozReview-Commit-ID: Faco9HM0Rgv

--HG--
extra : rebase_source : dc71d3a499df3d61696065efb01de32c8e036e38
2017-09-08 17:40:03 +02:00

69 lines
2 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function() {
await SpecialPowers.pushPrefEnv({
set: [["browser.urlbar.autoFill", false]],
});
const url = "data:text/html,<body>hi";
await testURL(url, urlEnter);
await testURL(url, urlClick);
});
function urlEnter(url) {
gURLBar.value = url;
gURLBar.focus();
EventUtils.synthesizeKey("VK_RETURN", {});
}
function urlClick(url) {
gURLBar.focus();
gURLBar.value = "";
for (let c of url) {
EventUtils.synthesizeKey(c, {});
}
EventUtils.synthesizeMouseAtCenter(gURLBar.goButton, {});
}
function promiseNewTabSwitched() {
return new Promise(resolve => {
gBrowser.addEventListener("TabSwitchDone", function() {
executeSoon(resolve);
}, {once: true});
});
}
async function testURL(url, loadFunc, endFunc) {
let tabSwitchedPromise = promiseNewTabSwitched();
let tab = gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);
let browser = gBrowser.selectedBrowser;
let pageshowPromise = BrowserTestUtils.waitForContentEvent(browser, "pageshow");
await tabSwitchedPromise;
await pageshowPromise;
let pagePrincipal = gBrowser.contentPrincipal;
loadFunc(url);
await BrowserTestUtils.waitForContentEvent(browser, "pageshow");
await ContentTask.spawn(browser, { isRemote: gMultiProcessBrowser },
async function(arg) {
const fm = Components.classes["@mozilla.org/focus-manager;1"].
getService(Components.interfaces.nsIFocusManager);
Assert.equal(fm.focusedElement, null, "focusedElement not null");
if (arg.isRemote) {
Assert.equal(fm.activeWindow, content, "activeWindow not correct");
}
});
is(document.activeElement, browser, "content window should be focused");
ok(!gBrowser.contentPrincipal.equals(pagePrincipal),
"load of " + url + " by " + loadFunc.name + " should produce a page with a different principal");
gBrowser.removeTab(tab);
}