diff options
Diffstat (limited to 'testing/web-platform/tests/wai-aria/combobox_haspopup_false-manual.html')
-rw-r--r-- | testing/web-platform/tests/wai-aria/combobox_haspopup_false-manual.html | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/testing/web-platform/tests/wai-aria/combobox_haspopup_false-manual.html b/testing/web-platform/tests/wai-aria/combobox_haspopup_false-manual.html new file mode 100644 index 0000000000..2b0ca94745 --- /dev/null +++ b/testing/web-platform/tests/wai-aria/combobox_haspopup_false-manual.html @@ -0,0 +1,156 @@ +<!doctype html> +<html> + <head> + <title>combobox haspopup false</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_COMBO_BOX" + ], + [ + "property", + "states", + "contains", + "STATE_EXPANDABLE" + ], + [ + "property", + "states", + "contains", + "STATE_EXPANDED" + ], + [ + "property", + "states", + "doesNotContain", + "STATE_HAS_POPUP" + ] + ], + "AXAPI" : [ + [ + "property", + "AXRole", + "is", + "AXComboBox" + ], + [ + "property", + "AXSubrole", + "is", + "<nil>" + ], + [ + "property", + "AXRoleDescription", + "is", + "combo box" + ], + [ + "property", + "AXExpanded", + "is", + "true" + ], + [ + "property", + "actions", + "doesNotContain", + "AXShowMenu" + ] + ], + "IAccessible2" : [ + [ + "property", + "role", + "is", + "ROLE_SYSTEM_COMBOBOX" + ], + [ + "property", + "objectAttributes", + "contains", + "haspopup:false" + ] + ], + "MSAA" : [ + [ + "property", + "role", + "is", + "ROLE_SYSTEM_COMBOBOX" + ], + [ + "property", + "states", + "doesNotContain", + "STATE_SYSTEM_HASPOPUP" + ], + [ + "property", + "states", + "contains", + "STATE_SYSTEM_EXPANDED" + ] + ], + "UIA" : [ + [ + "property", + "ControlType", + "is", + "Combobox" + ], + [ + "property", + "interfaces", + "contains", + "ExpandCollapse pattern" + ], + [ + "property", + "ExpandCollapse.ExpandCollapseState", + "is", + "Expanded" + ] + ] + }, + "title" : "step 1", + "type" : "test" + } + ], + "title" : "combobox haspopup false" +} + + ) ; + </script> + </head> + <body> + <p>This test examines the ARIA properties for combobox haspopup false.</p> + <div aria-label="Tag" id="test" aria-haspopup="false" role="combobox" aria-expanded="true" aria-owns="owned_dialog"> + <input type="text" aria-autocomplete="list" aria-controls="owned_dialog" aria-activedescendant="selected_cell"> + <div role="radiogroup"> + <div role="radio" id="selected_radio" tabindex="-1">R1</div><div role="radio" tabindex="-1">R2</div> + </div> + <div role="button" tabindex="0">ok</div> + + + <div id="manualMode"></div> + <div id="log"></div> + <div id="ATTAmessages"></div> + </body> +</html> |