mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
let contentWindow;
|
|
let contentElement;
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
registerCleanupFunction(function() {
|
|
if (gBrowser.tabs.length > 1)
|
|
gBrowser.removeTab(gBrowser.tabs[1]);
|
|
hideTabView();
|
|
});
|
|
|
|
showTabView(function() {
|
|
contentWindow = TabView.getContentWindow();
|
|
contentElement = contentWindow.document.getElementById("content");
|
|
test1();
|
|
});
|
|
}
|
|
|
|
function test1() {
|
|
let groupItems = contentWindow.GroupItems.groupItems;
|
|
is(groupItems.length, 1, "there is one groupItem");
|
|
|
|
whenTabViewIsHidden(function() {
|
|
gBrowser.selectedTab = gBrowser.tabs[0];
|
|
is(groupItems.length, 2, "there are two groupItems");
|
|
closeGroupItem(groupItems[1], finish);
|
|
});
|
|
|
|
// double click
|
|
doubleClick(contentElement, 0);
|
|
}
|
|
|
|
function doubleClick(targetElement, buttonCode) {
|
|
EventUtils.sendMouseEvent(
|
|
{ type: "dblclick", button: buttonCode }, targetElement, contentWindow);
|
|
}
|
|
|