blob: 737ac729a25e352461ad49ac811fefc589cb2e8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
add_task(async function testTabCloseShortcut() {
let win = await BrowserTestUtils.openNewBrowserWindow();
await SimpleTest.promiseFocus(win);
function onTabClose() {
ok(false, "shouldn't have gotten the TabClose event for the last tab");
}
var tab = win.gBrowser.selectedTab;
tab.addEventListener("TabClose", onTabClose);
EventUtils.synthesizeKey("w", { accelKey: true }, win);
ok(win.closed, "accel+w closed the window immediately");
tab.removeEventListener("TabClose", onTabClose);
});
|