mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a05c3a6714
--HG-- extra : rebase_source : 743b8bb459802675e38ef2ab8e8cee2c41b90f90
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
let tabOne;
|
|
let tabTwo;
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
tabOne = gBrowser.addTab("http://mochi.test:8888/");
|
|
tabTwo = gBrowser.addTab("http://mochi.test:8888/browser/browser/components/tabview/test/dummy_page.html");
|
|
|
|
afterAllTabsLoaded(function () {
|
|
// make sure the tab one is selected because undoCloseTab() would remove
|
|
// the selected tab if it's a blank tab.
|
|
gBrowser.selectedTab = tabOne;
|
|
showTabView(onTabViewWindowLoaded);
|
|
});
|
|
}
|
|
|
|
function onTabViewWindowLoaded() {
|
|
let contentWindow = TabView.getContentWindow();
|
|
let groupItems = contentWindow.GroupItems.groupItems;
|
|
is(groupItems.length, 1, "There is only one group");
|
|
is(groupItems[0].getChildren().length, 3, "The group has three tab items");
|
|
|
|
gBrowser.removeTab(tabTwo);
|
|
ok(TabView.isVisible(), "Tab View is still visible after removing a tab");
|
|
is(groupItems[0].getChildren().length, 2, "The group has two tab items");
|
|
|
|
restoreTab(function (tabTwo) {
|
|
ok(TabView.isVisible(), "Tab View is still visible after restoring a tab");
|
|
is(groupItems[0].getChildren().length, 3, "The group still has three tab items");
|
|
|
|
// clean up and finish
|
|
hideTabView(function () {
|
|
gBrowser.removeTab(tabOne);
|
|
gBrowser.removeTab(tabTwo);
|
|
finish();
|
|
});
|
|
}, 0);
|
|
}
|