Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | function test() { |
michael@0 | 2 | waitForExplicitFinish(); |
michael@0 | 3 | |
michael@0 | 4 | var tab1 = gBrowser.addTab("data:text/plain;charset=utf-8,foo"); |
michael@0 | 5 | gBrowser.pinTab(tab1); |
michael@0 | 6 | |
michael@0 | 7 | whenBrowserLoaded(tab1.linkedBrowser, function() { |
michael@0 | 8 | var tab2 = gBrowser.addTab(); |
michael@0 | 9 | gBrowser.pinTab(tab2); |
michael@0 | 10 | |
michael@0 | 11 | is(Array.indexOf(gBrowser.tabs, tab1), 0, "pinned tab 1 is at the first position"); |
michael@0 | 12 | gBrowser.removeTab(tab1); |
michael@0 | 13 | tab1 = undoCloseTab(); |
michael@0 | 14 | ok(tab1.pinned, "pinned tab 1 has been restored as a pinned tab"); |
michael@0 | 15 | is(Array.indexOf(gBrowser.tabs, tab1), 0, "pinned tab 1 has been restored to the first position"); |
michael@0 | 16 | |
michael@0 | 17 | gBrowser.removeTab(tab1); |
michael@0 | 18 | gBrowser.removeTab(tab2); |
michael@0 | 19 | finish(); |
michael@0 | 20 | }); |
michael@0 | 21 | } |