fune/toolkit/content/tests/browser/browser_quickfind_editable.js
Mark Banner 691543ee89 Bug 1486739 - Add missing dangling commas in browser/, services/, taskcluster/ and toolkit/. r=mossop
Automatic changes by ESLint, except for manual corrections for .xml files.

Differential Revision: https://phabricator.services.mozilla.com/D4439

--HG--
extra : moz-landing-system : lando
2018-08-31 05:59:17 +00:00

47 lines
1.5 KiB
JavaScript

const PAGE = "data:text/html,<div contenteditable>foo</div><input><textarea></textarea>";
const DESIGNMODE_PAGE = "data:text/html,<body onload='document.designMode=\"on\";'>";
const HOTKEYS = ["/", "'"];
async function test_hotkeys(browser, expected) {
let findbar = await gBrowser.getFindBar();
for (let key of HOTKEYS) {
is(findbar.hidden, true, "findbar is hidden");
await BrowserTestUtils.sendChar(key, gBrowser.selectedBrowser);
is(findbar.hidden, expected, "findbar should" + (expected ? "" : " not") + " be hidden");
if (!expected) {
await closeFindbarAndWait(findbar);
}
}
}
async function focus_element(browser, query) {
await ContentTask.spawn(browser, query, async function focus(query) {
let element = content.document.querySelector(query);
element.focus();
});
}
add_task(async function test_hotkey_on_editable_element() {
await BrowserTestUtils.withNewTab({
gBrowser,
url: PAGE,
}, async function do_tests(browser) {
await test_hotkeys(browser, false);
const ELEMENTS = ["div", "input", "textarea"];
for (let elem of ELEMENTS) {
await focus_element(browser, elem);
await test_hotkeys(browser, true);
await focus_element(browser, ":root");
await test_hotkeys(browser, false);
}
});
});
add_task(async function test_hotkey_on_designMode_document() {
await BrowserTestUtils.withNewTab({
gBrowser,
url: DESIGNMODE_PAGE,
}, async function do_tests(browser) {
await test_hotkeys(browser, true);
});
});