summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/core-aam/aria-rowindex-manual.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/core-aam/aria-rowindex-manual.html')
-rw-r--r--testing/web-platform/tests/core-aam/aria-rowindex-manual.html95
1 files changed, 95 insertions, 0 deletions
diff --git a/testing/web-platform/tests/core-aam/aria-rowindex-manual.html b/testing/web-platform/tests/core-aam/aria-rowindex-manual.html
new file mode 100644
index 0000000000..52c54fbda0
--- /dev/null
+++ b/testing/web-platform/tests/core-aam/aria-rowindex-manual.html
@@ -0,0 +1,95 @@
+<!doctype html>
+<html>
+ <head>
+ <title>aria-rowindex</title>
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
+ <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",
+ "objectAttributes",
+ "contains",
+ "rowindex:3"
+ ],
+ [
+ "result",
+ "atk_table_cell_get_position()",
+ "contains",
+ "row=0"
+ ]
+ ],
+ "AXAPI" : [
+ [
+ "property",
+ "AXARIARowIndex",
+ "is",
+ "3"
+ ]
+ ],
+ "IAccessible2" : [
+ [
+ "property",
+ "objectAttributes",
+ "contains",
+ "rowindex:3"
+ ]
+ ],
+ "UIA" : [
+ [
+ "property",
+ "GridItem.Row",
+ "is",
+ "2"
+ ]
+ ]
+ },
+ "title" : "step 1",
+ "type" : "test"
+ },
+ {
+ "element" : "row",
+ "test" : {
+ "IAccessible2" : [
+ [
+ "property",
+ "groupPosition",
+ "contains",
+ "positionInGroup:3"
+ ]
+ ]
+ },
+ "title" : "step 2",
+ "type" : "test"
+ }
+ ],
+ "title" : "aria-rowindex"
+}
+
+ ) ;
+ </script>
+ </head>
+ <body>
+ <p>This test examines the ARIA properties for aria-rowindex.</p>
+ <div role='grid'>
+ <div role='row' id='row'>
+ <div role='cell' id='test' aria-rowindex='3'>content</div>
+ </div>
+ </div>
+
+ <div id="manualMode"></div>
+ <div id="log"></div>
+ <div id="ATTAmessages"></div>
+ </body>
+</html>