mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// Tests that an about:blank tab with no history will not be saved into
|
|
// session store and thus, it will not show up in Recently Closed Tabs.
|
|
|
|
let tab;
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
gPrefService.setIntPref("browser.sessionstore.max_tabs_undo", 0);
|
|
gPrefService.clearUserPref("browser.sessionstore.max_tabs_undo");
|
|
|
|
is(ss.getClosedTabCount(window), 0, "should be no closed tabs");
|
|
|
|
gBrowser.tabContainer.addEventListener("TabOpen", onTabOpen, true);
|
|
|
|
tab = gBrowser.addTab();
|
|
}
|
|
|
|
function onTabOpen(aEvent) {
|
|
gBrowser.tabContainer.removeEventListener("TabOpen", onTabOpen, true);
|
|
|
|
// Let other listeners react to the TabOpen event before removing the tab.
|
|
executeSoon(function() {
|
|
is(gBrowser.browsers[1].currentURI.spec, "about:blank",
|
|
"we will be removing an about:blank tab");
|
|
|
|
gBrowser.removeTab(tab);
|
|
|
|
is(ss.getClosedTabCount(window), 0, "should still be no closed tabs");
|
|
|
|
executeSoon(finish);
|
|
});
|
|
}
|