summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wai-aria/manual/columnheader_selected_false_not_automatically_propagated-manual.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/wai-aria/manual/columnheader_selected_false_not_automatically_propagated-manual.html')
-rw-r--r--testing/web-platform/tests/wai-aria/manual/columnheader_selected_false_not_automatically_propagated-manual.html133
1 files changed, 133 insertions, 0 deletions
diff --git a/testing/web-platform/tests/wai-aria/manual/columnheader_selected_false_not_automatically_propagated-manual.html b/testing/web-platform/tests/wai-aria/manual/columnheader_selected_false_not_automatically_propagated-manual.html
new file mode 100644
index 0000000000..7624f2a3b8
--- /dev/null
+++ b/testing/web-platform/tests/wai-aria/manual/columnheader_selected_false_not_automatically_propagated-manual.html
@@ -0,0 +1,133 @@
+<!doctype html>
+<html>
+ <head>
+ <title>columnheader selected false not automatically propagated</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",
+ "role",
+ "is",
+ "ROLE_TABLE_CELL"
+ ],
+ [
+ "property",
+ "states",
+ "contains",
+ "STATE_SELECTED"
+ ],
+ [
+ "property",
+ "states",
+ "contains",
+ "STATE_SELECTABLE"
+ ]
+ ],
+ "AXAPI" : [
+ [
+ "property",
+ "AXRole",
+ "is",
+ "AXCell"
+ ],
+ [
+ "property",
+ "AXSubrole",
+ "is",
+ "<nil>"
+ ],
+ [
+ "property",
+ "AXRoleDescription",
+ "is",
+ "cell"
+ ],
+ [
+ "property",
+ "AXSelected",
+ "is",
+ "true"
+ ]
+ ],
+ "MSAA" : [
+ [
+ "property",
+ "role",
+ "is",
+ "ROLE_SYSTEM_CELL"
+ ],
+ [
+ "property",
+ "states",
+ "contains",
+ "STATE_SYSTEM_SELECTED"
+ ],
+ [
+ "property",
+ "states",
+ "contains",
+ "STATE_SYSTEM_SELECTABLE"
+ ]
+ ],
+ "UIA" : [
+ [
+ "property",
+ "ControlType",
+ "is",
+ "DataItem"
+ ],
+ [
+ "property",
+ "SelectionItem.IsSelected",
+ "is",
+ "true"
+ ],
+ [
+ "property",
+ "SelectionItem.selectionContainer",
+ "is",
+ "test1"
+ ]
+ ]
+ },
+ "title" : "step 1",
+ "type" : "test"
+ }
+ ],
+ "title" : "columnheader selected false not automatically propagated"
+}
+
+ ) ;
+ </script>
+ </head>
+ <body>
+ <p>This test examines the ARIA properties for columnheader selected false not automatically propagated.</p>
+ <div id="test1" role="grid">
+ <div role="row">
+ <div role="columnheader" aria-selected="false">C1</div>
+ <div role="columnheader">C2</div>
+ </div>
+ <div role="row">
+ <div id="test" aria-selected="true" role="gridcell">A1</div>
+ <div role="gridcell">A2</div>
+ </div>
+ </div>
+
+ <div id="manualMode"></div>
+ <div id="log"></div>
+ <div id="ATTAmessages"></div>
+ </body>
+</html>