mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
99 lines
3.6 KiB
JavaScript
99 lines
3.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
window.addEventListener("tabviewshown", setup, false);
|
|
TabView.toggle();
|
|
}
|
|
|
|
function setup() {
|
|
window.removeEventListener("tabviewshown", setup, false);
|
|
|
|
let contentWindow = document.getElementById("tab-view").contentWindow;
|
|
is(contentWindow.GroupItems.groupItems.length, 1, "Has only one group");
|
|
|
|
let groupItemOne = contentWindow.GroupItems.groupItems[0];
|
|
// add a blank tab to group one.
|
|
createNewTabItemInGroupItem(groupItemOne, contentWindow, function() {
|
|
is(groupItemOne.getChildren().length, 2, "Group one has 2 tab items");
|
|
|
|
// create group two with a blank tab.
|
|
let groupItemTwo = createEmptyGroupItem(contentWindow, 250, 250, 40);
|
|
createNewTabItemInGroupItem(groupItemTwo, contentWindow, function() {
|
|
// start the first test.
|
|
testGroups(groupItemOne, groupItemTwo, contentWindow);
|
|
});
|
|
});
|
|
}
|
|
|
|
function createNewTabItemInGroupItem(groupItem, contentWindow, callback) {
|
|
// click on the + button to create a blank tab in group item
|
|
let newTabButton = groupItem.container.getElementsByClassName("newTabButton");
|
|
ok(newTabButton[0], "New tab button exists");
|
|
|
|
let onTabViewHidden = function() {
|
|
window.removeEventListener("tabviewhidden", onTabViewHidden, false);
|
|
|
|
ok(!TabView.isVisible(), "Tab View is hidden because we just opened a tab");
|
|
TabView.toggle();
|
|
};
|
|
let onTabViewShown = function() {
|
|
window.removeEventListener("tabviewshown", onTabViewShown, false);
|
|
|
|
ok(TabView.isVisible(), "Tab View is visible");
|
|
callback();
|
|
};
|
|
window.addEventListener("tabviewhidden", onTabViewHidden, false);
|
|
window.addEventListener("tabviewshown", onTabViewShown, false);
|
|
EventUtils.sendMouseEvent({ type: "click" }, newTabButton[0], contentWindow);
|
|
}
|
|
|
|
function testGroups(groupItemOne, groupItemTwo, contentWindow) {
|
|
// check active tab and group
|
|
is(contentWindow.GroupItems.getActiveGroupItem(), groupItemTwo,
|
|
"The group two is the active group");
|
|
is(contentWindow.UI.getActiveTab(), groupItemTwo.getChild(0),
|
|
"The first tab item in group two is active");
|
|
|
|
let tabItem = groupItemOne.getChild(1);
|
|
tabItem.addSubscriber(tabItem, "tabRemoved", function() {
|
|
tabItem.removeSubscriber(tabItem, "tabRemoved");
|
|
|
|
is(groupItemOne.getChildren().length, 1,
|
|
"The num of childen in group one is 1");
|
|
|
|
// check active group and active tab
|
|
is(contentWindow.GroupItems.getActiveGroupItem(), groupItemOne,
|
|
"The group one is the active group");
|
|
is(contentWindow.UI.getActiveTab(), groupItemOne.getChild(0),
|
|
"The first tab item in group one is active");
|
|
|
|
let onTabViewHidden = function() {
|
|
window.removeEventListener("tabviewhidden", onTabViewHidden, false);
|
|
is(groupItemOne.getChildren().length, 2,
|
|
"The num of childen in group one is 2");
|
|
|
|
// clean up and finish
|
|
groupItemTwo.addSubscriber(groupItemTwo, "close", function() {
|
|
groupItemTwo.removeSubscriber(groupItemTwo, "close");
|
|
|
|
gBrowser.removeTab(groupItemOne.getChild(1).tab);
|
|
is(contentWindow.GroupItems.groupItems.length, 1, "Has only one group");
|
|
is(groupItemOne.getChildren().length, 1,
|
|
"The num of childen in group one is 1");
|
|
is(gBrowser.tabs.length, 1, "Has only one tab");
|
|
|
|
finish();
|
|
});
|
|
gBrowser.removeTab(groupItemTwo.getChild(0).tab);
|
|
groupItemTwo.close();
|
|
}
|
|
window.addEventListener("tabviewhidden", onTabViewHidden, false);
|
|
EventUtils.synthesizeKey("t", { accelKey: true });
|
|
});
|
|
// close a tab item in group one
|
|
tabItem.close();
|
|
}
|