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
|
/* 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";
/**
* Test AXIndexForChildUIElement
*/
addAccessibleTask(
`<p id="p">Hello <a href="#" id="link">strange</a> world`,
(browser, accDoc) => {
let p = getNativeInterface(accDoc, "p");
let children = p.getAttributeValue("AXChildren");
is(children.length, 3, "p has 3 children");
is(
children[1].getAttributeValue("AXDOMIdentifier"),
"link",
"second child is link"
);
let index = p.getParameterizedAttributeValue(
"AXIndexForChildUIElement",
children[1]
);
is(index, 1, "link is second child");
}
);
/**
* Test textbox with more than one child
*/
addAccessibleTask(
`<div id="textbox" role="textbox">Hello <a href="#">strange</a> world</div>`,
(browser, accDoc) => {
let textbox = getNativeInterface(accDoc, "textbox");
is(
textbox.getAttributeValue("AXChildren").length,
3,
"textbox has 3 children"
);
}
);
/**
* Test textbox with one child
*/
addAccessibleTask(
`<div id="textbox" role="textbox">Hello </div>`,
async (browser, accDoc) => {
let textbox = getNativeInterface(accDoc, "textbox");
is(
textbox.getAttributeValue("AXChildren").length,
0,
"textbox with one child is pruned"
);
let reorder = waitForEvent(EVENT_REORDER, "textbox");
await SpecialPowers.spawn(browser, [], () => {
let link = content.document.createElement("a");
link.textContent = "World";
content.document.getElementById("textbox").appendChild(link);
});
await reorder;
is(
textbox.getAttributeValue("AXChildren").length,
2,
"textbox with two child is not pruned"
);
}
);
|