Go to the source code of this file.
Initial value:= [
is(
tabbrowser.browsers.length, 2,
"test_bug462673.html has opened a second tab");
is(
tabbrowser.selectedTab,
tab.nextSibling,
"dependent tab is selected");
ok(
win.closed,
"Window is closed");
},
var newTab = tabbrowser.addTab();
tabbrowser.removeTab(
tab);
ok(!
win.closed,
"Window stays open");
is(tabbrowser.tabContainer.childElementCount, 1, "Window has one tab");
is(tabbrowser.browsers.length, 1, "Window has one browser");
is(tabbrowser.selectedTab, newTab, "Remaining tab is selected");
is(tabbrowser.selectedBrowser, newBrowser, "Browser for remaining tab is selected");
is(tabbrowser.mTabBox.selectedPanel, newBrowser.parentNode, "Panel for remaining tab is selected");
}
}
]
Definition at line 1 of file browser_bug462673.js.