blob: ef37f7dc9a571aef192b54742e58c2ef016d903b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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);
});
|