mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
41ba1acfa5
--HG-- extra : rebase_source : d8414b8de165cf2fa534719c36416d82d21872c6
17 lines
693 B
JavaScript
17 lines
693 B
JavaScript
function test() {
|
|
is(gBrowser.mTabs.length, 1, "one tab is open");
|
|
|
|
content.focus();
|
|
isnot(document.activeElement, gURLBar.inputField, "location bar is not focused");
|
|
|
|
var tab = gBrowser.selectedTab;
|
|
gPrefService.setBoolPref("browser.tabs.closeWindowWithLastTab", false);
|
|
EventUtils.synthesizeKey("w", { accelKey: true });
|
|
is(tab.parentNode, null, "ctrl+w removes the tab");
|
|
is(gBrowser.mTabs.length, 1, "a new tab has been opened");
|
|
is(document.activeElement, gURLBar.inputField, "location bar is focused for the new tab");
|
|
|
|
if (gPrefService.prefHasUserValue("browser.tabs.closeWindowWithLastTab"))
|
|
gPrefService.clearUserPref("browser.tabs.closeWindowWithLastTab");
|
|
}
|