1
0
Fork 0
firefox/toolkit/content/tests/browser/browser_findbar_disabled_manual.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

33 lines
1 KiB
JavaScript

const TEST_PAGE_URI = "data:text/html;charset=utf-8,The letter s.";
// Disable manual (FAYT) findbar hotkeys.
add_task(async function setup_test_preference() {
await SpecialPowers.pushPrefEnv({
set: [["accessibility.typeaheadfind.manual", false]],
});
});
// Makes sure that the findbar hotkeys (' and /) have no effect.
add_task(async function test_hotkey_disabled() {
// Opening new tab.
let tab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
TEST_PAGE_URI
);
let browser = gBrowser.getBrowserForTab(tab);
let findbar = await gBrowser.getFindBar();
// Pressing these keys open the findbar normally.
const HOTKEYS = ["/", "'"];
// Make sure no findbar appears when pressed.
for (let key of HOTKEYS) {
is(findbar.hidden, true, "Findbar is hidden now.");
gBrowser.selectedTab = tab;
await SimpleTest.promiseFocus(gBrowser.selectedBrowser);
await BrowserTestUtils.sendChar(key, browser);
is(findbar.hidden, true, "Findbar should still be hidden.");
}
gBrowser.removeTab(tab);
});