Source code
Revision control
Copy as Markdown
Other Tools
/* 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
// Tests that keyboard navigation in the search panel works as designed.
const searchPopup = document.getElementById("PopupSearchAutoComplete");
const diacritic_engine = "Foo \u2661";
var { Preferences } = ChromeUtils.importESModule(
"resource://gre/modules/Preferences.sys.mjs"
);
let searchIcon;
let engine;
add_setup(async function () {
let searchbar = await gCUITestUtils.addSearchBar();
registerCleanupFunction(() => {
gCUITestUtils.removeSearchBar();
});
searchIcon = searchbar.querySelector(".searchbar-search-button");
let defaultEngine = await Services.search.getDefault();
engine = await SearchTestUtils.installOpenSearchEngine({
url: getRootDirectory(gTestPath) + "testEngine_diacritics.xml",
});
registerCleanupFunction(async () => {
await Services.search.setDefault(
defaultEngine,
Ci.nsISearchService.CHANGE_REASON_UNKNOWN
);
engine.hideOneOffButton = false;
});
});
add_task(async function test_hidden() {
engine.hideOneOffButton = true;
let promise = promiseEvent(searchPopup, "popupshown");
info("Opening search panel");
EventUtils.synthesizeMouseAtCenter(searchIcon, {});
await promise;
ok(
!(await getOneOffs()).some(
x => x.getAttribute("tooltiptext") == diacritic_engine
),
"Search engines with diacritics are hidden when added to hiddenOneOffs preference."
);
promise = promiseEvent(searchPopup, "popuphidden");
info("Closing search panel");
EventUtils.synthesizeKey("KEY_Escape");
await promise;
});
add_task(async function test_shown() {
engine.hideOneOffButton = false;
let shownPromise = promiseEvent(searchPopup, "popupshown");
info("Opening search panel");
EventUtils.synthesizeMouseAtCenter(searchIcon, {});
await shownPromise;
ok(
(await getOneOffs()).some(
x => x.getAttribute("tooltiptext") == diacritic_engine
),
"Search engines with diacritics are shown when removed from hiddenOneOffs preference."
);
let promise = promiseEvent(searchPopup, "popuphidden");
searchPopup.hidePopup();
await promise;
});