1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* Any copyright is dedicated to the Public Domain.
https://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Want to test relations.
/* import-globals-from ../../mochitest/name.js */
/* import-globals-from ../../mochitest/relations.js */
/* import-globals-from ../../mochitest/role.js */
loadScripts(
{ name: "relations.js", dir: MOCHITESTS_DIR },
{ name: "name.js", dir: MOCHITESTS_DIR },
{ name: "role.js", dir: MOCHITESTS_DIR }
);
addAccessibleTask(``, async function (browser) {
info("Showing alert");
let shown = waitForEvent(
EVENT_SHOW,
evt => evt.accessible.role == ROLE_INTERNAL_FRAME
);
// Let's make sure the dialog content gets focus.
// On macOS, we unfortunately focus the label. We focus the OK button on
// all other platforms. See https://phabricator.services.mozilla.com/D204908
// for more discussion.
let expectedRole =
AppConstants.platform == "macosx" ? ROLE_LABEL : ROLE_PUSHBUTTON;
let focused = waitForEvent(EVENT_FOCUS, evt => {
return evt.accessible.role == expectedRole;
});
await invokeContentTask(browser, [], () => {
// Use setTimeout to avoid blocking the return of the content task
// on the alert, which is otherwise synchronous.
content.setTimeout(() => content.alert("test"), 0);
});
const frame = (await shown).accessible;
const focusedEl = (await focused).accessible;
ok(true, "Dialog shown and something got focused");
let dialog = getAccessible(focusedEl.DOMNode.ownerDocument);
testRole(dialog, ROLE_DIALOG);
let infoBody = focusedEl.DOMNode.ownerDocument.getElementById("infoBody");
testRelation(dialog, RELATION_DESCRIBED_BY, infoBody);
testDescr(dialog, "test ");
info("Dismissing alert");
let hidden = waitForEvent(EVENT_HIDE, frame);
EventUtils.synthesizeKey("KEY_Escape", {}, frame.DOMNode.contentWindow);
await hidden;
});
|