1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/components/sessionstore/test/browser_579868.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +function test() { 1.9 + let tab1 = gBrowser.addTab("about:rights"); 1.10 + let tab2 = gBrowser.addTab("about:mozilla"); 1.11 + whenBrowserLoaded(tab1.linkedBrowser, mainPart); 1.12 + waitForExplicitFinish(); 1.13 + 1.14 + function mainPart() { 1.15 + // Tell the session storer that the tab is pinned 1.16 + let newTabState = '{"entries":[{"url":"about:rights"}],"pinned":true,"userTypedValue":"Hello World!"}'; 1.17 + ss.setTabState(tab1, newTabState); 1.18 + 1.19 + // Undo pinning 1.20 + gBrowser.unpinTab(tab1); 1.21 + 1.22 + // Close and restore tab 1.23 + gBrowser.removeTab(tab1); 1.24 + let savedState = JSON.parse(ss.getClosedTabData(window))[0].state; 1.25 + isnot(savedState.pinned, true, "Pinned should not be true"); 1.26 + tab1 = ss.undoCloseTab(window, 0); 1.27 + 1.28 + isnot(tab1.pinned, true, "Should not be pinned"); 1.29 + gBrowser.removeTab(tab1); 1.30 + gBrowser.removeTab(tab2); 1.31 + finish(); 1.32 + } 1.33 +}