2013-12-12 03:44:33 -08:00
|
|
|
/* 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.
|
2015-01-29 00:41:57 -08:00
|
|
|
forgetClosedWindows();
|
2013-12-12 03:44:33 -08:00
|
|
|
|
|
|
|
let oldState = ss.getWindowState(window);
|
|
|
|
|
|
|
|
let popupState = {windows: [
|
|
|
|
{tabs: [{entries: []}], isPopup: true, hidden: "toolbar"}
|
|
|
|
]};
|
|
|
|
|
|
|
|
// Set this window to be a popup.
|
2010-09-21 14:56:52 -07:00
|
|
|
ss.setWindowState(window, JSON.stringify(popupState), true);
|
|
|
|
|
2013-12-12 03:44:33 -08:00
|
|
|
// 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);
|
2010-09-21 14:56:52 -07:00
|
|
|
|
2013-12-12 03:44:33 -08:00
|
|
|
// Make sure sessionstore sees this window.
|
|
|
|
let state = JSON.parse(ss.getBrowserState());
|
|
|
|
is(state.windows.length, 2, "sessionstore knows about this window");
|
2010-09-21 14:56:52 -07:00
|
|
|
|
2013-12-12 03:44:33 -08:00
|
|
|
// Closed the window and check the closed window count.
|
|
|
|
yield promiseWindowClosed(win);
|
|
|
|
is(ss.getClosedWindowCount(), 1, "correct closed window count");
|
2010-09-21 14:56:52 -07:00
|
|
|
|
2013-12-12 03:44:33 -08:00
|
|
|
// Cleanup.
|
|
|
|
ss.setWindowState(window, oldState, true);
|
|
|
|
});
|