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 | newWindowWithTabView(onTabViewShown); |
michael@0 | 8 | } |
michael@0 | 9 | |
michael@0 | 10 | function onTabViewShown(win) { |
michael@0 | 11 | let contentWindow = win.TabView.getContentWindow(); |
michael@0 | 12 | |
michael@0 | 13 | let finishTest = function () { |
michael@0 | 14 | hideTabView(function () { |
michael@0 | 15 | win.close(); |
michael@0 | 16 | finish(); |
michael@0 | 17 | }, win); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | // do not let the group arrange itself |
michael@0 | 21 | contentWindow.GroupItems.pauseArrange(); |
michael@0 | 22 | |
michael@0 | 23 | // let's create a groupItem small enough to get stacked |
michael@0 | 24 | let groupItem = new contentWindow.GroupItem([], { |
michael@0 | 25 | immediately: true, |
michael@0 | 26 | bounds: {left: 20, top: 20, width: 100, height: 100} |
michael@0 | 27 | }); |
michael@0 | 28 | |
michael@0 | 29 | contentWindow.UI.setActive(groupItem); |
michael@0 | 30 | |
michael@0 | 31 | // we need seven tabs at least to reproduce this |
michael@0 | 32 | for (var i=0; i<7; i++) |
michael@0 | 33 | win.gBrowser.loadOneTab('about:blank', {inBackground: true}); |
michael@0 | 34 | |
michael@0 | 35 | // finally let group arrange |
michael@0 | 36 | contentWindow.GroupItems.resumeArrange(); |
michael@0 | 37 | |
michael@0 | 38 | let tabItem6 = groupItem.getChildren()[5]; |
michael@0 | 39 | let tabItem7 = groupItem.getChildren()[6]; |
michael@0 | 40 | ok(!tabItem6.getHidden(), 'the 6th child must not be hidden'); |
michael@0 | 41 | ok(tabItem7.getHidden(), 'the 7th child must be hidden'); |
michael@0 | 42 | |
michael@0 | 43 | finishTest(); |
michael@0 | 44 | } |