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.
1 /* Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ */
4 function test() {
5 waitForExplicitFinish();
7 newWindowWithTabView(function(win) {
8 registerCleanupFunction(function() {
9 win.close();
10 });
12 let cw = win.TabView.getContentWindow();
14 let groupItemOne = cw.GroupItems.groupItems[0];
15 is(groupItemOne.getChildren().length, 1, "Group one has 1 tab item");
17 let groupItemTwo = createGroupItemWithBlankTabs(win, 300, 300, 40, 1);
18 is(groupItemTwo.getChildren().length, 1, "Group two has 1 tab items");
20 whenTabViewIsHidden(function() {
21 win.gBrowser.removeTab(win.gBrowser.selectedTab);
22 executeSoon(function() {
23 win.undoCloseTab();
25 groupItemTwo.addSubscriber("childAdded", function onChildAdded(data) {
26 groupItemTwo.removeSubscriber("childAdded", onChildAdded);
28 is(groupItemOne.getChildren().length, 1, "Group one still has 1 tab item");
29 is(groupItemTwo.getChildren().length, 1, "Group two still has 1 tab item");
30 });
32 finish();
33 });
34 }, win);
35 groupItemTwo.getChild(0).zoomIn();
36 }, function(win) {
37 let newTab = win.gBrowser.addTab();
38 win.gBrowser.pinTab(newTab);
39 });
40 }