gecko/browser/base/content/test/browser_bug484315.js
Dão Gottwald 8eb02744ee Bug 484315 - With browser.tabs.closeWindowWithLastTab set to false popups cannot be closed. r=gavin
--HG--
extra : rebase_source : 98796a0d5f44a4a93fcb6e62484f2a45b978d4eb
2009-11-06 22:39:46 +01:00

26 lines
834 B
JavaScript

function test() {
var contentWin = window.open("about:blank", "", "width=100,height=100");
var enumerator = Cc["@mozilla.org/appshell/window-mediator;1"]
.getService(Ci.nsIWindowMediator)
.getEnumerator("navigator:browser");
while (enumerator.hasMoreElements()) {
let win = enumerator.getNext();
if (win.content == contentWin) {
gPrefService.setBoolPref("browser.tabs.closeWindowWithLastTab", false);
win.gBrowser.removeCurrentTab();
ok(win.closed, "popup is closed");
// clean up
if (!win.closed)
win.close();
if (gPrefService.prefHasUserValue("browser.tabs.closeWindowWithLastTab"))
gPrefService.clearUserPref("browser.tabs.closeWindowWithLastTab");
return;
}
}
throw "couldn't find the content window";
}