mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
fe788b81e2
From d8b8de84b6a3fadb2f198cddba183231bdffcd07 Mon Sep 17 00:00:00 2001
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Bug 597071 - Closed windows should only be resurrected when there is a single
|
|
* popup window
|
|
*/
|
|
add_task(function test_close_last_nonpopup_window() {
|
|
// Purge the list of closed windows.
|
|
while (ss.getClosedWindowCount()) {
|
|
ss.forgetClosedWindow(0);
|
|
}
|
|
|
|
let oldState = ss.getWindowState(window);
|
|
|
|
let popupState = {windows: [
|
|
{tabs: [{entries: []}], isPopup: true, hidden: "toolbar"}
|
|
]};
|
|
|
|
// Set this window to be a popup.
|
|
ss.setWindowState(window, JSON.stringify(popupState), true);
|
|
|
|
// Open a new window with a tab.
|
|
let win = yield promiseNewWindowLoaded({private: false});
|
|
let tab = win.gBrowser.addTab("http://example.com/");
|
|
yield promiseBrowserLoaded(tab.linkedBrowser);
|
|
|
|
// Make sure sessionstore sees this window.
|
|
let state = JSON.parse(ss.getBrowserState());
|
|
is(state.windows.length, 2, "sessionstore knows about this window");
|
|
|
|
// Closed the window and check the closed window count.
|
|
yield promiseWindowClosed(win);
|
|
is(ss.getClosedWindowCount(), 1, "correct closed window count");
|
|
|
|
// Cleanup.
|
|
ss.setWindowState(window, oldState, true);
|
|
});
|