mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
16 lines
615 B
JavaScript
16 lines
615 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");
|
|
|
|
gPrefService.clearUserPref("browser.tabs.closeWindowWithLastTab");
|
|
}
|