forked from mirrors/gecko-dev
17 lines
583 B
JavaScript
17 lines
583 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
add_task(function*() {
|
|
// Remove the search bar from toolbar
|
|
CustomizableUI.removeWidgetFromArea("search-container");
|
|
|
|
// Test that Ctrl/Cmd + K will focus the url bar
|
|
let focusPromise = BrowserTestUtils.waitForEvent(gURLBar, "focus");
|
|
EventUtils.synthesizeKey("k", { accelKey: true });
|
|
yield focusPromise;
|
|
Assert.equal(document.activeElement, gURLBar.inputField, "URL Bar should be focused");
|
|
|
|
// Reset changes made to toolbar
|
|
CustomizableUI.reset();
|
|
});
|
|
|