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 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | function test() { |
michael@0 | 6 | // Add two new tabs after the original tab. Pin the first one. |
michael@0 | 7 | let originalTab = gBrowser.selectedTab; |
michael@0 | 8 | let newTab1 = gBrowser.addTab(); |
michael@0 | 9 | let newTab2 = gBrowser.addTab(); |
michael@0 | 10 | gBrowser.pinTab(newTab1); |
michael@0 | 11 | |
michael@0 | 12 | // Check that there is only one closable tab from originalTab to the end |
michael@0 | 13 | is(gBrowser.getTabsToTheEndFrom(originalTab).length, 1, |
michael@0 | 14 | "One unpinned tab to the right"); |
michael@0 | 15 | |
michael@0 | 16 | // Remove tabs to the end |
michael@0 | 17 | gBrowser.removeTabsToTheEndFrom(originalTab); |
michael@0 | 18 | is(gBrowser.tabs.length, 2, "Length is 2"); |
michael@0 | 19 | is(gBrowser.tabs[1], originalTab, "Starting tab is not removed"); |
michael@0 | 20 | is(gBrowser.tabs[0], newTab1, "Pinned tab is not removed"); |
michael@0 | 21 | |
michael@0 | 22 | // Remove pinned tab |
michael@0 | 23 | gBrowser.removeTab(newTab1); |
michael@0 | 24 | } |