blob: 039e49fa5bfe9305a9b6d1f1cc3e19aff81dba0b (
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
34
35
36
37
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Check we can open the tab manager using the keyboard.
* Note that navigation to buttons in the toolbar is covered
* by other tests.
*/
add_task(async function test_open_tabmanager_keyboard() {
await SpecialPowers.pushPrefEnv({
set: [["browser.tabs.tabmanager.enabled", true]],
});
let newWindow = await BrowserTestUtils.openNewWindowWithFlushedCacheForMozSupports();
let elem = newWindow.document.getElementById("alltabs-button");
// Borrowed from forceFocus() in the keyboard directory head.js
elem.setAttribute("tabindex", "-1");
elem.focus();
elem.removeAttribute("tabindex");
let focused = BrowserTestUtils.waitForEvent(newWindow, "focus", true);
EventUtils.synthesizeKey(" ", {}, newWindow);
let event = await focused;
ok(
event.originalTarget.closest("#allTabsMenu-allTabsView"),
"Focus inside all tabs menu after toolbar button pressed"
);
let hidden = BrowserTestUtils.waitForEvent(
event.target.closest("panel"),
"popuphidden"
);
EventUtils.synthesizeKey("KEY_Escape", { shiftKey: false }, newWindow);
await hidden;
await BrowserTestUtils.closeWindow(newWindow);
});
|