mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
120 lines
4.6 KiB
JavaScript
120 lines
4.6 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
let gTests = [
|
|
{
|
|
desc: "Ctrl+K should open the menu panel and focus the search bar if the search bar is in the panel.",
|
|
run: function() {
|
|
let searchbar = document.getElementById("searchbar");
|
|
gCustomizeMode.addToPanel(searchbar);
|
|
let placement = CustomizableUI.getPlacementOfWidget("search-container");
|
|
is(placement.area, CustomizableUI.AREA_PANEL, "Should be in panel");
|
|
|
|
let shownPanelPromise = promisePanelShown(window);
|
|
sendWebSearchKeyCommand();
|
|
yield shownPanelPromise;
|
|
|
|
logActiveElement();
|
|
is(document.activeElement, searchbar.textbox.inputField, "The searchbar should be focused");
|
|
|
|
let hiddenPanelPromise = promisePanelHidden(window);
|
|
EventUtils.synthesizeKey("VK_ESCAPE", {});
|
|
yield hiddenPanelPromise;
|
|
},
|
|
teardown: function() {
|
|
CustomizableUI.reset();
|
|
}
|
|
},
|
|
{
|
|
desc: "Ctrl+K should give focus to the searchbar when the searchbar is in the menupanel and the panel is already opened.",
|
|
run: function() {
|
|
let searchbar = document.getElementById("searchbar");
|
|
gCustomizeMode.addToPanel(searchbar);
|
|
let placement = CustomizableUI.getPlacementOfWidget("search-container");
|
|
is(placement.area, CustomizableUI.AREA_PANEL, "Should be in panel");
|
|
|
|
let shownPanelPromise = promisePanelShown(window);
|
|
PanelUI.toggle({type: "command"});
|
|
yield shownPanelPromise;
|
|
|
|
sendWebSearchKeyCommand();
|
|
logActiveElement();
|
|
is(document.activeElement, searchbar.textbox.inputField, "The searchbar should be focused");
|
|
|
|
let hiddenPanelPromise = promisePanelHidden(window);
|
|
EventUtils.synthesizeKey("VK_ESCAPE", {});
|
|
yield hiddenPanelPromise;
|
|
},
|
|
teardown: function() {
|
|
CustomizableUI.reset();
|
|
}
|
|
},
|
|
{
|
|
desc: "Ctrl+K should open the overflow panel and focus the search bar if the search bar is overflowed.",
|
|
setup: function() {
|
|
this.originalWindowWidth = window.outerWidth;
|
|
let navbar = document.getElementById(CustomizableUI.AREA_NAVBAR);
|
|
ok(!navbar.hasAttribute("overflowing"), "Should start with a non-overflowing toolbar.");
|
|
ok(CustomizableUI.inDefaultState, "Should start in default state.");
|
|
|
|
window.resizeTo(480, window.outerHeight);
|
|
yield waitForCondition(() => navbar.hasAttribute("overflowing"));
|
|
ok(!navbar.querySelector("#search-container"), "Search container should be overflowing");
|
|
},
|
|
run: function() {
|
|
let searchbar = document.getElementById("searchbar");
|
|
|
|
let shownPanelPromise = promiseOverflowShown(window);
|
|
sendWebSearchKeyCommand();
|
|
yield shownPanelPromise;
|
|
|
|
let chevron = document.getElementById("nav-bar-overflow-button");
|
|
yield waitForCondition(function() chevron.open);
|
|
logActiveElement();
|
|
is(document.activeElement, searchbar.textbox.inputField, "The searchbar should be focused");
|
|
|
|
let hiddenPanelPromise = promiseOverflowHidden(window);
|
|
EventUtils.synthesizeKey("VK_ESCAPE", {});
|
|
yield hiddenPanelPromise;
|
|
},
|
|
teardown: function() {
|
|
let navbar = document.getElementById(CustomizableUI.AREA_NAVBAR);
|
|
window.resizeTo(this.originalWindowWidth, window.outerHeight);
|
|
yield waitForCondition(() => !navbar.hasAttribute("overflowing"));
|
|
ok(!navbar.hasAttribute("overflowing"), "Should not have an overflowing toolbar.");
|
|
}
|
|
},
|
|
{
|
|
desc: "Ctrl+K should focus the search bar if it is in the navbar and not overflowing.",
|
|
run: function() {
|
|
let searchbar = document.getElementById("searchbar");
|
|
let placement = CustomizableUI.getPlacementOfWidget("search-container");
|
|
is(placement.area, CustomizableUI.AREA_NAVBAR, "Should be in nav-bar");
|
|
|
|
sendWebSearchKeyCommand();
|
|
logActiveElement();
|
|
is(document.activeElement, searchbar.textbox.inputField, "The searchbar should be focused");
|
|
},
|
|
},
|
|
];
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
runTests(gTests);
|
|
}
|
|
|
|
function sendWebSearchKeyCommand() {
|
|
if (Services.appinfo.OS === "Darwin")
|
|
EventUtils.synthesizeKey("k", { accelKey: true });
|
|
else
|
|
EventUtils.synthesizeKey("k", { ctrlKey: true });
|
|
}
|
|
|
|
function logActiveElement() {
|
|
let element = document.activeElement;
|
|
info("Active element: " + element ?
|
|
element + " (" + element.localName + "#" + element.id + "." + [...element.classList].join(".") + ")" :
|
|
"null");
|
|
}
|