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 | waitForExplicitFinish(); |
michael@0 | 7 | |
michael@0 | 8 | // establish initial state |
michael@0 | 9 | is(gBrowser.tabs.length, 1, "we start with one tab"); |
michael@0 | 10 | |
michael@0 | 11 | // create a tab |
michael@0 | 12 | let tab = gBrowser.loadOneTab("about:blank"); |
michael@0 | 13 | ok(!tab.hidden, "tab starts out not hidden"); |
michael@0 | 14 | is(gBrowser.tabs.length, 2, "we now have two tabs"); |
michael@0 | 15 | |
michael@0 | 16 | // make sure .hidden is read-only |
michael@0 | 17 | tab.hidden = true; |
michael@0 | 18 | ok(!tab.hidden, "can't set .hidden directly"); |
michael@0 | 19 | |
michael@0 | 20 | // hide the tab |
michael@0 | 21 | gBrowser.hideTab(tab); |
michael@0 | 22 | ok(tab.hidden, "tab is hidden"); |
michael@0 | 23 | |
michael@0 | 24 | // now pin it and make sure it gets unhidden |
michael@0 | 25 | gBrowser.pinTab(tab); |
michael@0 | 26 | ok(tab.pinned, "tab was pinned"); |
michael@0 | 27 | ok(!tab.hidden, "tab was unhidden"); |
michael@0 | 28 | |
michael@0 | 29 | // try hiding it now that it's pinned; shouldn't be able to |
michael@0 | 30 | gBrowser.hideTab(tab); |
michael@0 | 31 | ok(!tab.hidden, "tab did not hide"); |
michael@0 | 32 | |
michael@0 | 33 | // clean up |
michael@0 | 34 | gBrowser.removeTab(tab); |
michael@0 | 35 | is(gBrowser.tabs.length, 1, "we finish with one tab"); |
michael@0 | 36 | |
michael@0 | 37 | finish(); |
michael@0 | 38 | } |