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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/* 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/. */
"use strict";
/* import-globals-from ../../mochitest/role.js */
loadScripts({ name: "role.js", dir: MOCHITESTS_DIR });
// Test web area role and AXLoadComplete event
addAccessibleTask(``, async (browser, accDoc) => {
let evt = waitForMacEvent("AXLoadComplete", (iface, data) => {
return iface.getAttributeValue("AXDescription") == "webarea test";
});
await SpecialPowers.spawn(browser, [], () => {
content.location = "data:text/html,<title>webarea test</title>";
});
let doc = await evt;
is(
doc.getAttributeValue("AXRole"),
"AXWebArea",
"document has AXWebArea role"
);
is(doc.getAttributeValue("AXValue"), "", "document has no AXValue");
is(doc.getAttributeValue("AXTitle"), null, "document has no AXTitle");
is(doc.getAttributeValue("AXLoaded"), 1, "document has finished loading");
});
// Test iframe web area role and AXLayoutComplete event
addAccessibleTask(`<title>webarea test</title>`, async (browser, accDoc) => {
// If the iframe loads before the top level document finishes loading, we'll
// get both an AXLayoutComplete event for the iframe and an AXLoadComplete
// event for the document. Otherwise, if the iframe loads after the
// document, we'll get one AXLoadComplete event.
let eventPromise = Promise.race([
waitForMacEvent("AXLayoutComplete", (iface, data) => {
return iface.getAttributeValue("AXDescription") == "iframe document";
}),
waitForMacEvent("AXLoadComplete", (iface, data) => {
return iface.getAttributeValue("AXDescription") == "webarea test";
}),
]);
await SpecialPowers.spawn(browser, [], () => {
const iframe = content.document.createElement("iframe");
iframe.src = "data:text/html,<title>iframe document</title>hello world";
content.document.body.appendChild(iframe);
});
let doc = await eventPromise;
if (doc.getAttributeValue("AXTitle")) {
// iframe should have no title, so if we get a title here
// we've got the main document and need to get the iframe from
// the main doc
doc = doc.getAttributeValue("AXChildren")[0];
}
is(
doc.getAttributeValue("AXRole"),
"AXWebArea",
"iframe document has AXWebArea role"
);
is(doc.getAttributeValue("AXValue"), "", "iframe document has no AXValue");
is(doc.getAttributeValue("AXTitle"), null, "iframe document has no AXTitle");
is(
doc.getAttributeValue("AXDescription"),
"iframe document",
"test has correct label"
);
is(
doc.getAttributeValue("AXLoaded"),
1,
"iframe document has finished loading"
);
});
|