Bug 1014323 - Do not add about:privatebrowsing to recently closed tabs r=ttaubert

This commit is contained in:
Jacob Acord 2014-06-10 11:07:30 +02:00
parent 55480a23b3
commit 54f9855fd2
3 changed files with 28 additions and 1 deletions

View File

@ -3078,7 +3078,8 @@ let SessionStoreInternal = {
return aTabState.entries.length &&
!(aTabState.entries.length == 1 &&
(aTabState.entries[0].url == "about:blank" ||
aTabState.entries[0].url == "about:newtab") &&
aTabState.entries[0].url == "about:newtab" ||
aTabState.entries[0].url == "about:privatebrowsing") &&
!aTabState.userTypedValue);
},

View File

@ -57,6 +57,7 @@ support-files =
#disabled-for-intermittent-failures--bug-766044, browser_459906_sample.html
#disabled-for-intermittent-failures--bug-765389, browser_461743_sample.html
[browser_aboutPrivateBrowsing.js]
[browser_aboutSessionRestore.js]
[browser_attributes.js]
[browser_broadcast.js]

View File

@ -0,0 +1,25 @@
/* 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:privatebrowsing tab with no history will not
// be saved into session store and thus, it will not show up in
// Recently Closed Tabs.
add_task(function* () {
while (ss.getClosedTabCount(window)) {
ss.forgetClosedTab(window, 0);
}
is(ss.getClosedTabCount(window), 0, "should be no closed tabs");
let tab = gBrowser.addTab("about:privatebrowsing");
let browser = tab.linkedBrowser;
yield promiseBrowserLoaded(browser);
is(gBrowser.browsers[1].currentURI.spec, "about:privatebrowsing",
"we will be removing an about:privatebrowsing tab");
gBrowser.removeTab(tab);
is(ss.getClosedTabCount(window), 0, "should still be no closed tabs");
});