gecko/browser/base/content/test/browser_bug455852.js

17 lines
691 B
JavaScript
Raw Normal View History

2009-03-20 01:12:53 -07:00
function test() {
2010-04-09 04:18:02 -07:00
is(gBrowser.tabs.length, 1, "one tab is open");
2009-03-20 01:12:53 -07:00
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");
2010-04-09 04:18:02 -07:00
is(gBrowser.tabs.length, 1, "a new tab has been opened");
2009-03-20 01:12:53 -07:00
is(document.activeElement, gURLBar.inputField, "location bar is focused for the new tab");
if (gPrefService.prefHasUserValue("browser.tabs.closeWindowWithLastTab"))
gPrefService.clearUserPref("browser.tabs.closeWindowWithLastTab");
2009-03-20 01:12:53 -07:00
}