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 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | function test() { |
michael@0 | 5 | waitForExplicitFinish(); |
michael@0 | 6 | |
michael@0 | 7 | function onLoad(win) { |
michael@0 | 8 | registerCleanupFunction(function () win.close()); |
michael@0 | 9 | |
michael@0 | 10 | let tab = win.gBrowser.addTab(); |
michael@0 | 11 | win.gBrowser.pinTab(tab); |
michael@0 | 12 | } |
michael@0 | 13 | |
michael@0 | 14 | function onShow(win) { |
michael@0 | 15 | let tabs = win.gBrowser.tabs; |
michael@0 | 16 | |
michael@0 | 17 | // zoom into normal tab |
michael@0 | 18 | zoomIn(tabs[1], function () { |
michael@0 | 19 | is(win.gBrowser.selectedTab, tabs[1], "normal tab is selected"); |
michael@0 | 20 | |
michael@0 | 21 | // select app tab |
michael@0 | 22 | win.gBrowser.selectedTab = tabs[0]; |
michael@0 | 23 | |
michael@0 | 24 | toggleTabView(win, function () { |
michael@0 | 25 | is(win.gBrowser.selectedTab, tabs[0], "app tab is selected"); |
michael@0 | 26 | finish(); |
michael@0 | 27 | }); |
michael@0 | 28 | }); |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | newWindowWithTabView(onShow, onLoad); |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | // ---------- |
michael@0 | 35 | function zoomIn(tab, callback) { |
michael@0 | 36 | whenTabViewIsHidden(function () { |
michael@0 | 37 | executeSoon(callback); |
michael@0 | 38 | }, tab.ownerDocument.defaultView); |
michael@0 | 39 | |
michael@0 | 40 | tab._tabViewTabItem.zoomIn(); |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | // ---------- |
michael@0 | 44 | function toggleTabView(win, callback) { |
michael@0 | 45 | showTabView(function () { |
michael@0 | 46 | hideTabView(callback, win); |
michael@0 | 47 | }, win); |
michael@0 | 48 | } |