forked from mirrors/gecko-dev
MozReview-Commit-ID: Tq8YrZWG6P --HG-- extra : rebase_source : 2e02e0a809d08ff26291a027b73a54668d6d5f9d
11 lines
426 B
JavaScript
11 lines
426 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");
|
|
EventUtils.synthesizeKey("k", { accelKey: true });
|
|
await focusPromise;
|
|
Assert.equal(document.activeElement, gURLBar.inputField, "URL Bar should be focused");
|
|
});
|
|
|