fune/browser/base/content/test/urlbar/browser_urlbarFocusedCmdK.js
Dão Gottwald ed5f1e7927 Bug 1443404 - Fix browser_urlbarFocusedCmdK.js intermittent failure. r=Gijs
MozReview-Commit-ID: AA31YY6nUPc

--HG--
extra : rebase_source : 61f810b2dbd85846496b941bf999342efdde4515
2018-03-09 11:24:06 +01:00

12 lines
462 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function() {
// Test that Ctrl/Cmd + K will focus the url bar
let focusPromise = BrowserTestUtils.waitForEvent(gURLBar, "focus");
document.documentElement.focus();
EventUtils.synthesizeKey("k", { accelKey: true });
await focusPromise;
Assert.equal(document.activeElement, gURLBar.inputField, "URL Bar should be focused");
});