Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | function test() { |
michael@0 | 2 | var contentWin = window.open("about:blank", "", "width=100,height=100"); |
michael@0 | 3 | var enumerator = Services.wm.getEnumerator("navigator:browser"); |
michael@0 | 4 | |
michael@0 | 5 | while (enumerator.hasMoreElements()) { |
michael@0 | 6 | let win = enumerator.getNext(); |
michael@0 | 7 | if (win.content == contentWin) { |
michael@0 | 8 | gPrefService.setBoolPref("browser.tabs.closeWindowWithLastTab", false); |
michael@0 | 9 | win.gBrowser.removeCurrentTab(); |
michael@0 | 10 | ok(win.closed, "popup is closed"); |
michael@0 | 11 | |
michael@0 | 12 | // clean up |
michael@0 | 13 | if (!win.closed) |
michael@0 | 14 | win.close(); |
michael@0 | 15 | if (gPrefService.prefHasUserValue("browser.tabs.closeWindowWithLastTab")) |
michael@0 | 16 | gPrefService.clearUserPref("browser.tabs.closeWindowWithLastTab"); |
michael@0 | 17 | |
michael@0 | 18 | return; |
michael@0 | 19 | } |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | throw "couldn't find the content window"; |
michael@0 | 23 | } |