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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
|
/* 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 });
/* import-globals-from ../../mochitest/attributes.js */
loadScripts({ name: "attributes.js", dir: MOCHITESTS_DIR });
/**
* Helper function to test table consistency.
*/
function testTableConsistency(table, expectedRowCount, expectedColumnCount) {
is(table.getAttributeValue("AXRole"), "AXTable", "Correct role for table");
let tableChildren = table.getAttributeValue("AXChildren");
// XXX: Should be expectedRowCount+ExpectedColumnCount+1 children, rows (incl headers) + cols + headers
// if we're trying to match Safari.
is(
tableChildren.length,
expectedRowCount + expectedColumnCount,
"Table has children = rows (4) + cols (3)"
);
for (let i = 0; i < tableChildren.length; i++) {
let currChild = tableChildren[i];
if (i < expectedRowCount) {
is(
currChild.getAttributeValue("AXRole"),
"AXRow",
"Correct role for row"
);
} else {
is(
currChild.getAttributeValue("AXRole"),
"AXColumn",
"Correct role for col"
);
is(
currChild.getAttributeValue("AXRoleDescription"),
"column",
"Correct role desc for col"
);
}
}
is(
table.getAttributeValue("AXColumnCount"),
expectedColumnCount,
"Table has correct column count."
);
is(
table.getAttributeValue("AXRowCount"),
expectedRowCount,
"Table has correct row count."
);
let cols = table.getAttributeValue("AXColumns");
is(cols.length, expectedColumnCount, "Table has col list of correct length");
for (let i = 0; i < cols.length; i++) {
let currCol = cols[i];
let currChildren = currCol.getAttributeValue("AXChildren");
is(
currChildren.length,
expectedRowCount,
"Column has correct number of cells"
);
for (let j = 0; j < currChildren.length; j++) {
let currChild = currChildren[j];
is(
currChild.getAttributeValue("AXRole"),
"AXCell",
"Column child is cell"
);
}
}
let rows = table.getAttributeValue("AXRows");
is(rows.length, expectedRowCount, "Table has row list of correct length");
for (let i = 0; i < rows.length; i++) {
let currRow = rows[i];
let currChildren = currRow.getAttributeValue("AXChildren");
is(
currChildren.length,
expectedColumnCount,
"Row has correct number of cells"
);
for (let j = 0; j < currChildren.length; j++) {
let currChild = currChildren[j];
is(currChild.getAttributeValue("AXRole"), "AXCell", "Row child is cell");
}
}
}
/**
* Test table, columns, rows
*/
addAccessibleTask(
`<table id="customers">
<tbody>
<tr id="firstrow"><th>Company</th><th>Contact</th><th>Country</th></tr>
<tr><td>Alfreds Futterkiste</td><td>Maria Anders</td><td>Germany</td></tr>
<tr><td>Centro comercial Moctezuma</td><td>Francisco Chang</td><td>Mexico</td></tr>
<tr><td>Ernst Handel</td><td>Roland Mendel</td><td>Austria</td></tr>
</tbody>
</table>`,
async (browser, accDoc) => {
let table = getNativeInterface(accDoc, "customers");
testTableConsistency(table, 4, 3);
const rowText = [
"Madrigal Electromotive GmbH",
"Lydia Rodarte-Quayle",
"Germany",
];
let reorder = waitForEvent(EVENT_REORDER, "customers");
await SpecialPowers.spawn(browser, [rowText], _rowText => {
let tr = content.document.createElement("tr");
for (let t of _rowText) {
let td = content.document.createElement("td");
td.textContent = t;
tr.appendChild(td);
}
content.document.getElementById("customers").appendChild(tr);
});
await reorder;
let cols = table.getAttributeValue("AXColumns");
is(cols.length, 3, "Table has col list of correct length");
for (let i = 0; i < cols.length; i++) {
let currCol = cols[i];
let currChildren = currCol.getAttributeValue("AXChildren");
is(currChildren.length, 5, "Column has correct number of cells");
let lastCell = currChildren[currChildren.length - 1];
let cellChildren = lastCell.getAttributeValue("AXChildren");
is(cellChildren.length, 1, "Cell has a single text child");
is(
cellChildren[0].getAttributeValue("AXRole"),
"AXStaticText",
"Correct role for cell child"
);
is(
cellChildren[0].getAttributeValue("AXValue"),
rowText[i],
"Correct text for cell"
);
}
reorder = waitForEvent(EVENT_REORDER, "firstrow");
await SpecialPowers.spawn(browser, [], () => {
let td = content.document.createElement("td");
td.textContent = "Ticker";
content.document.getElementById("firstrow").appendChild(td);
});
await reorder;
cols = table.getAttributeValue("AXColumns");
is(cols.length, 4, "Table has col list of correct length");
is(
cols[cols.length - 1].getAttributeValue("AXChildren").length,
1,
"Last column has single child"
);
}
);
addAccessibleTask(
`<table id="table">
<tr>
<th colspan="2" id="header1">Header 1</th>
<th id="header2">Header 2</th>
</tr>
<tr>
<td id="cell1">one</td>
<td id="cell2" rowspan="2">two</td>
<td id="cell3">three</td>
</tr>
<tr>
<td id="cell4">four</td>
<td id="cell5">five</td>
</tr>
</table>`,
(browser, accDoc) => {
let table = getNativeInterface(accDoc, "table");
let getCellAt = (col, row) =>
table.getParameterizedAttributeValue("AXCellForColumnAndRow", [col, row]);
function testCell(cell, expectedId, expectedColRange, expectedRowRange) {
is(
cell.getAttributeValue("AXDOMIdentifier"),
expectedId,
"Correct DOM Identifier"
);
Assert.deepEqual(
cell.getAttributeValue("AXColumnIndexRange"),
expectedColRange,
"Correct column range"
);
Assert.deepEqual(
cell.getAttributeValue("AXRowIndexRange"),
expectedRowRange,
"Correct row range"
);
}
testCell(getCellAt(0, 0), "header1", [0, 2], [0, 1]);
testCell(getCellAt(1, 0), "header1", [0, 2], [0, 1]);
testCell(getCellAt(2, 0), "header2", [2, 1], [0, 1]);
testCell(getCellAt(0, 1), "cell1", [0, 1], [1, 1]);
testCell(getCellAt(1, 1), "cell2", [1, 1], [1, 2]);
testCell(getCellAt(2, 1), "cell3", [2, 1], [1, 1]);
testCell(getCellAt(0, 2), "cell4", [0, 1], [2, 1]);
testCell(getCellAt(1, 2), "cell2", [1, 1], [1, 2]);
testCell(getCellAt(2, 2), "cell5", [2, 1], [2, 1]);
let colHeaders = table.getAttributeValue("AXColumnHeaderUIElements");
Assert.deepEqual(
colHeaders.map(c => c.getAttributeValue("AXDOMIdentifier")),
["header1", "header1", "header2"],
"Correct column headers"
);
}
);
addAccessibleTask(
`<table id="table">
<tr>
<td>Foo</td>
</tr>
</table>`,
(browser, accDoc) => {
// Make sure we guess this table to be a layout table.
testAttrs(
findAccessibleChildByID(accDoc, "table"),
{ "layout-guess": "true" },
true
);
let table = getNativeInterface(accDoc, "table");
is(
table.getAttributeValue("AXRole"),
"AXGroup",
"Correct role (AXGroup) for layout table"
);
let children = table.getAttributeValue("AXChildren");
is(
children.length,
1,
"Layout table has single child (no additional columns)"
);
}
);
addAccessibleTask(
`<div id="table" role="table">
<span style="display: block;">
<div role="row">
<div role="cell">Cell 1</div>
<div role="cell">Cell 2</div>
</div>
</span>
<span style="display: block;">
<div role="row">
<span style="display: block;">
<div role="cell">Cell 3</div>
<div role="cell">Cell 4</div>
</span>
</div>
</span>
</div>`,
async (browser, accDoc) => {
let table = getNativeInterface(accDoc, "table");
testTableConsistency(table, 2, 2);
}
);
|