forked from mirrors/gecko-dev
This also adds a utility function for synthesizing native touch events to Eventutils.js. I did not add a test for searchbar because of intermittent issues with showing the contextmenu (that are not reproducible manually). I believe this is rather related to searchbar functionality than my patches. MozReview-Commit-ID: Dqm92Saosxz --HG-- extra : rebase_source : e59df4f487f60cea137fbf8aea71a854a5706de9
73 lines
3 KiB
JavaScript
73 lines
3 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* This test checks that context menus are in touchmode
|
|
* when opened through a touch event (long tap). */
|
|
|
|
async function openAndCheckContextMenu(contextMenu, target) {
|
|
is(contextMenu.state, "closed", "Context menu is initally closed.");
|
|
|
|
let popupshown = BrowserTestUtils.waitForEvent(contextMenu, "popupshown");
|
|
EventUtils.synthesizeNativeTapAtCenter(target, true);
|
|
await popupshown;
|
|
|
|
is(contextMenu.state, "open", "Context menu is open.");
|
|
is(contextMenu.getAttribute("touchmode"), "true", "Context menu is in touchmode.");
|
|
|
|
contextMenu.hidePopup();
|
|
|
|
popupshown = BrowserTestUtils.waitForEvent(contextMenu, "popupshown");
|
|
EventUtils.synthesizeMouseAtCenter(target, {type: "contextmenu"});
|
|
await popupshown;
|
|
|
|
is(contextMenu.state, "open", "Context menu is open.");
|
|
ok(!contextMenu.hasAttribute("touchmode"), "Context menu is not in touchmode.");
|
|
|
|
contextMenu.hidePopup();
|
|
}
|
|
|
|
// Test the content area context menu.
|
|
add_task(async function test_contentarea_contextmenu_touch() {
|
|
await BrowserTestUtils.withNewTab("about:blank", async function(browser) {
|
|
let contextMenu = document.getElementById("contentAreaContextMenu");
|
|
await openAndCheckContextMenu(contextMenu, browser);
|
|
});
|
|
});
|
|
|
|
// Test the back and forward buttons.
|
|
add_task(async function test_back_forward_button_contextmenu_touch() {
|
|
await BrowserTestUtils.withNewTab("http://example.com", async function(browser) {
|
|
let contextMenu = document.getElementById("backForwardMenu");
|
|
|
|
let backbutton = document.getElementById("back-button");
|
|
let notDisabled = BrowserTestUtils.waitForCondition(() => !backbutton.hasAttribute("disabled"));
|
|
BrowserTestUtils.loadURI(browser, "http://example.org");
|
|
await notDisabled;
|
|
await openAndCheckContextMenu(contextMenu, backbutton);
|
|
|
|
|
|
let forwardbutton = document.getElementById("forward-button");
|
|
notDisabled = BrowserTestUtils.waitForCondition(() => !forwardbutton.hasAttribute("disabled"));
|
|
backbutton.click();
|
|
await notDisabled;
|
|
await openAndCheckContextMenu(contextMenu, forwardbutton);
|
|
});
|
|
});
|
|
|
|
// Test the toolbar context menu.
|
|
add_task(async function test_toolbar_contextmenu_touch() {
|
|
let toolbarContextMenu = document.getElementById("toolbar-context-menu");
|
|
let target = document.getElementById("PanelUI-menu-button");
|
|
await openAndCheckContextMenu(toolbarContextMenu, target);
|
|
});
|
|
|
|
// Test the urlbar input context menu.
|
|
add_task(async function test_urlbar_contextmenu_touch() {
|
|
let urlbar = document.getElementById("urlbar");
|
|
let textBox = document.getAnonymousElementByAttribute(urlbar,
|
|
"anonid", "textbox-input-box");
|
|
let menu = document.getAnonymousElementByAttribute(textBox,
|
|
"anonid", "input-box-contextmenu");
|
|
await openAndCheckContextMenu(menu, textBox);
|
|
});
|