diff options
Diffstat (limited to 'testing/web-platform/tests/accname/name_heading-combobox-focusable-alternative-manual.html')
-rw-r--r-- | testing/web-platform/tests/accname/name_heading-combobox-focusable-alternative-manual.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/testing/web-platform/tests/accname/name_heading-combobox-focusable-alternative-manual.html b/testing/web-platform/tests/accname/name_heading-combobox-focusable-alternative-manual.html new file mode 100644 index 0000000000..c1540b12be --- /dev/null +++ b/testing/web-platform/tests/accname/name_heading-combobox-focusable-alternative-manual.html @@ -0,0 +1,73 @@ +<!doctype html> +<html> + <head> + <title>Name heading-combobox-focusable-alternative</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", + "name", + "is", + "Country of origin: United States" + ] + ], + "AXAPI" : [ + [ + "property", + "AXDescription", + "is", + "Country of origin: United States" + ] + ], + "IAccessible2" : [ + [ + "property", + "accName", + "is", + "Country of origin: United States" + ] + ], + "UIA" : [ + [ + "property", + "Name", + "is", + "Country of origin: United States" + ] + ] + }, + "title" : "step 1", + "type" : "test" + } + ], + "title" : "Name heading-combobox-focusable-alternative" +} + + ) ; + </script> + </head> + <body> + <p>This test examines the ARIA properties for Name heading-combobox-focusable-alternative.</p> + <h2 id="test"> + Country of origin: + <input role="combobox" type="text" title="Choose your country." value="United States"> + </h2> + + <div id="manualMode"></div> + <div id="log"></div> + <div id="ATTAmessages"></div> + </body> +</html> |