diff options
Diffstat (limited to 'testing/web-platform/tests/accname/description_1.0_combobox-focusable-manual.html')
-rw-r--r-- | testing/web-platform/tests/accname/description_1.0_combobox-focusable-manual.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/testing/web-platform/tests/accname/description_1.0_combobox-focusable-manual.html b/testing/web-platform/tests/accname/description_1.0_combobox-focusable-manual.html new file mode 100644 index 0000000000..c0d54d6c23 --- /dev/null +++ b/testing/web-platform/tests/accname/description_1.0_combobox-focusable-manual.html @@ -0,0 +1,72 @@ +<!doctype html> +<html> + <head> + <title>Description 1.0 combobox-focusable</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", + "description", + "is", + "" + ] + ], + "AXAPI" : [ + [ + "property", + "AXHelp", + "is", + "" + ] + ], + "IAccessible2" : [ + [ + "property", + "accDescription", + "is", + "" + ] + ], + "UIA" : [ + [ + "property", + "Description", + "is", + "" + ] + ] + }, + "title" : "step 1", + "type" : "test" + } + ], + "title" : "Description 1.0 combobox-focusable" +} + + ) ; + </script> + </head> + <body> + <p>This test examines the ARIA properties for Description 1.0 combobox-focusable.</p> + <div id="test" role="combobox" tabindex="0" title="Choose your language."> + <span> English </span> + </div> + + <div id="manualMode"></div> + <div id="log"></div> + <div id="ATTAmessages"></div> + </body> +</html> |