forked from mirrors/gecko-dev
This removes the sync reflow from almost all cases. The only case where we keep it is when a keypress caught in content triggers a sync message to the parent process. We should clean this up in bug 1371523. I've tried to fix the tests, but a lot of them seem to be disabled anyway... MozReview-Commit-ID: 9k36p7q8MKy --HG-- extra : rebase_source : 311ee41ba9456a5c5d58b81a0cfa999bcef0027e
47 lines
1.5 KiB
JavaScript
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);
|
|
});
|
|
});
|