mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
845 B
JavaScript
26 lines
845 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
newWindowWithTabView(function (win) {
|
|
registerCleanupFunction(function () win.close());
|
|
|
|
let cw = win.TabView.getContentWindow();
|
|
let groupItem = cw.GroupItems.groupItems[0];
|
|
groupItem.setBounds(new cw.Rect(cw.innerWidth - 200, 0, 200, 200));
|
|
|
|
whenTabViewIsHidden(function () waitForFocus(finish), win);
|
|
|
|
waitForFocus(function () {
|
|
let button = cw.document.getElementById("exit-button");
|
|
EventUtils.synthesizeMouseAtCenter(button, {}, cw);
|
|
}, cw);
|
|
});
|
|
|
|
// This test relies on the test timing out in order to indicate failure so
|
|
// let's add a dummy pass.
|
|
ok(true, "Each test requires at least one pass, fail or todo so here is a pass.");
|
|
}
|