gecko-dev/testing/web-platform/tests/wai-aria/table_rowcount_3-manual.html
James Graham 3f997c7d6e Bug 1367340 - Update web-platform-tests to revision a2d29f3497c889546662566721bbd4f86efdbedd, a=testonly
MozReview-Commit-ID: G7hh5RgrlOv


--HG--
rename : testing/web-platform/tests/content-security-policy/navigation/to-javascript-url.html => testing/web-platform/tests/content-security-policy/navigation/to-javascript-url-script-src.html
rename : testing/web-platform/tests/webusb/idlharness.html => testing/web-platform/tests/webusb/idlharness.https.html
2017-05-24 14:03:28 +01:00

120 lines
2.8 KiB
HTML

<!doctype html>
<html>
<head>
<title>table rowcount 3</title>
<link rel="stylesheet" href="/resources/testharness.css">
<link rel="stylesheet" href="/wai-aria/scripts/manual.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/wai-aria/scripts/ATTAcomm.js"></script>
<script>
setup({explicit_timeout: true, explicit_done: true });
var theTest = new ATTAcomm(
{
"steps" : [
{
"element" : "test",
"test" : {
"ATK" : [
[
"property",
"role",
"is",
"ROLE_TABLE"
],
[
"property",
"objectAttributes",
"contains",
"rowcount:3"
],
[
"result",
"atk_table_get_n_rows()",
"is",
"3"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXTable"
],
[
"property",
"AXARIARowCount",
"is",
"3"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_TABLE"
],
[
"property",
"rowcount",
"is",
"3"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_TABLE"
],
[
"property",
"rowcount",
"is",
"3"
]
],
"UIA" : [
[
"property",
"Control Type",
"is",
"Table"
],
[
"property",
"Table.RowCount",
"is",
"3"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "table rowcount 3"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for table rowcount 3.</p>
<div role='table' id='test' aria-rowcount='3' aria-colcount='2'>
<div role='row'>
<span role='cell'>cheese</span>
</div>
</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>