mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
let testURL = chromeRoot + "browser_select.html";
|
|
let new_tab = null;
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Entry point (must be named "test")
|
|
function test() {
|
|
// This test is async
|
|
waitForExplicitFinish();
|
|
|
|
// Add new tab to hold the <select> page
|
|
new_tab = Browser.addTab(testURL, true);
|
|
ok(new_tab, "Tab Opened");
|
|
|
|
// Need to wait until the page is loaded
|
|
messageManager.addMessageListener("pageshow",
|
|
function(aMessage) {
|
|
if (new_tab.browser.currentURI.spec != "about:blank") {
|
|
messageManager.removeMessageListener(aMessage.name, arguments.callee);
|
|
onPageReady();
|
|
}
|
|
});
|
|
}
|
|
|
|
function onPageReady() {
|
|
let combo = new_tab.browser.contentDocument.getElementById("combobox");
|
|
isnot(combo, null, "Get the select from web content");
|
|
|
|
// Sending a synthesized event to the combo is not working
|
|
let rect = browserViewToClientRect(Rect.fromRect(combo.getBoundingClientRect()));
|
|
ContentTouchHandler.tapSingle(rect.left + 1, rect.top + 1);
|
|
|
|
waitFor(onUIReady, function() { return document.getElementById("select-container").hidden == false; });
|
|
}
|
|
|
|
function onUIReady() {
|
|
let selectui = document.getElementById("select-container");
|
|
is(selectui.hidden, false, "Select UI should be open");
|
|
is(Elements.contentNavigator.hidden, false, "Content Navigator should be visible");
|
|
|
|
let doneButton = document.getElementById("select-buttons-done");
|
|
doneButton.click();
|
|
|
|
// Close our tab when finished
|
|
Browser.closeTab(new_tab);
|
|
is(Elements.contentNavigator.hidden, true, "Content Navigator should be hidden");
|
|
is(selectui.hidden, true, "Select UI should be hidden");
|
|
|
|
// We must finialize the tests
|
|
finish();
|
|
}
|
|
|
|
function browserViewToClientRect(rect) {
|
|
let container = document.getElementById("browsers");
|
|
let containerBCR = container.getBoundingClientRect();
|
|
return rect.clone().translate(Math.round(containerBCR.left), Math.round(containerBCR.top));
|
|
}
|