summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wai-aria/manual/option_selected_undefined-manual.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/wai-aria/manual/option_selected_undefined-manual.html')
-rw-r--r--testing/web-platform/tests/wai-aria/manual/option_selected_undefined-manual.html131
1 files changed, 131 insertions, 0 deletions
diff --git a/testing/web-platform/tests/wai-aria/manual/option_selected_undefined-manual.html b/testing/web-platform/tests/wai-aria/manual/option_selected_undefined-manual.html
new file mode 100644
index 0000000000..5930de9a48
--- /dev/null
+++ b/testing/web-platform/tests/wai-aria/manual/option_selected_undefined-manual.html
@@ -0,0 +1,131 @@
+<!doctype html>
+<html>
+ <head>
+ <title>option selected undefined</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_LIST_ITEM"
+ ],
+ [
+ "property",
+ "states",
+ "doesNotContain",
+ "STATE_SELECTED"
+ ],
+ [
+ "property",
+ "states",
+ "contains",
+ "STATE_SELECTABLE"
+ ]
+ ],
+ "AXAPI" : [
+ [
+ "property",
+ "AXRole",
+ "is",
+ "AXStaticText"
+ ],
+ [
+ "property",
+ "AXSubrole",
+ "is",
+ "<nil>"
+ ],
+ [
+ "property",
+ "AXRoleDescription",
+ "is",
+ "text"
+ ],
+ [
+ "property",
+ "AXSelected",
+ "is",
+ "false"
+ ]
+ ],
+ "MSAA" : [
+ [
+ "property",
+ "role",
+ "is",
+ "ROLE_SYSTEM_LISTITEM"
+ ],
+ [
+ "property",
+ "states",
+ "doesNotContain",
+ "STATE_SYSTEM_SELECTED"
+ ],
+ [
+ "property",
+ "states",
+ "contains",
+ "STATE_SYSTEM_SELECTABLE"
+ ]
+ ],
+ "UIA" : [
+ [
+ "property",
+ "ControlType",
+ "is",
+ "ListItem"
+ ],
+ [
+ "property",
+ "interfaces",
+ "contains",
+ "Invoke"
+ ],
+ [
+ "property",
+ "ControlPatterns",
+ "doesNotContain",
+ "SelectionItem"
+ ]
+ ]
+ },
+ "title" : "step 1",
+ "type" : "test"
+ }
+ ],
+ "title" : "option selected undefined"
+}
+
+ ) ;
+ </script>
+ </head>
+ <body>
+ <p>This test examines the ARIA properties for option selected undefined.</p>
+ <div role="listbox">
+ <div role="option" id="test">
+ Fish
+ </div>
+ <div role="option">
+ beef
+ </div>
+ </div>
+
+ <div id="manualMode"></div>
+ <div id="log"></div>
+ <div id="ATTAmessages"></div>
+ </body>
+</html>