mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
33 lines
1,013 B
JavaScript
33 lines
1,013 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
Components.utils.import("resource://gre/modules/Promise.jsm", this);
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
newWindowWithTabView(win => {
|
|
is(win.gBrowser.tabs.length, 1, "There is only one tab");
|
|
|
|
let tab = win.gBrowser.tabs[0];
|
|
let tabItem = tab._tabViewTabItem;
|
|
ok(tabItem.parent, "The tab item belongs to a group");
|
|
let groupId = tabItem.parent.id;
|
|
|
|
tab._tabViewTabItem.close();
|
|
|
|
whenTabViewIsHidden(function() {
|
|
// a new tab with group should be opened
|
|
is(win.gBrowser.tabs.length, 1, "There is still one tab");
|
|
isnot(win.gBrowser.selectedTab, tab, "The tab is different");
|
|
|
|
tab = win.gBrowser.tabs[0];
|
|
tabItem = tab._tabViewTabItem;
|
|
ok(tabItem.parent, "This new tab item belongs to a group");
|
|
|
|
is(tabItem.parent.id, groupId, "The group is different");
|
|
|
|
promiseWindowClosed(win).then(finish);
|
|
}, win);
|
|
});
|
|
}
|