Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 }