forked from mirrors/gecko-dev
18 lines
728 B
JavaScript
18 lines
728 B
JavaScript
add_task(async function() {
|
|
is(gBrowser.tabs.length, 1, "one tab is open");
|
|
|
|
gBrowser.selectedBrowser.focus();
|
|
isnot(document.activeElement, gURLBar.inputField, "location bar is not focused");
|
|
|
|
var tab = gBrowser.selectedTab;
|
|
Services.prefs.setBoolPref("browser.tabs.closeWindowWithLastTab", false);
|
|
|
|
EventUtils.synthesizeKey("w", { accelKey: true });
|
|
|
|
is(tab.parentNode, null, "ctrl+w removes the tab");
|
|
is(gBrowser.tabs.length, 1, "a new tab has been opened");
|
|
is(document.activeElement, gURLBar.inputField, "location bar is focused for the new tab");
|
|
|
|
if (Services.prefs.prefHasUserValue("browser.tabs.closeWindowWithLastTab"))
|
|
Services.prefs.clearUserPref("browser.tabs.closeWindowWithLastTab");
|
|
});
|