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(function (win) { |
michael@0 | 8 | registerCleanupFunction(function () win.close()); |
michael@0 | 9 | |
michael@0 | 10 | let cw = win.TabView.getContentWindow(); |
michael@0 | 11 | let groupItem = cw.GroupItems.groupItems[0]; |
michael@0 | 12 | |
michael@0 | 13 | // create some tabs with favIcons |
michael@0 | 14 | for (let i = 0; i < 3; i++) |
michael@0 | 15 | win.gBrowser.loadOneTab("http://mochi.test:8888/browser/browser/components/tabview/test/test_bug644097.html", {inBackground: true}); |
michael@0 | 16 | |
michael@0 | 17 | win.gBrowser.removeTab(win.gBrowser.tabs[0]); |
michael@0 | 18 | |
michael@0 | 19 | // shrink the group until it stacks |
michael@0 | 20 | let size = 400; |
michael@0 | 21 | while (!groupItem.isStacked() && --size) |
michael@0 | 22 | groupItem.setSize(size, size, true); |
michael@0 | 23 | |
michael@0 | 24 | // determine the tabItem at the top of the stack |
michael@0 | 25 | let tabItem; |
michael@0 | 26 | groupItem.getChildren().forEach(function (item) { |
michael@0 | 27 | if (groupItem.isTopOfStack(item)) |
michael@0 | 28 | tabItem = item; |
michael@0 | 29 | }); |
michael@0 | 30 | |
michael@0 | 31 | ok(tabItem, "we found the tabItem at the top of the stack"); |
michael@0 | 32 | |
michael@0 | 33 | let fav = tabItem.$fav; |
michael@0 | 34 | is(fav.css("display"), "block", "the favIcon is visible"); |
michael@0 | 35 | is(fav.css("left"), "0px", "the favIcon is at the left-most position"); |
michael@0 | 36 | is(fav.css("top"), "0px", "the favIcon is at the top-most position"); |
michael@0 | 37 | |
michael@0 | 38 | finish(); |
michael@0 | 39 | }); |
michael@0 | 40 | } |