aria-autocomplete_both-manual.html (1740B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>aria-autocomplete=both</title> 5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> 6 <link rel="stylesheet" href="/wai-aria/scripts/manual.css"> 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 <script src="/wai-aria/scripts/ATTAcomm.js"></script> 10 <script> 11 setup({explicit_timeout: true, explicit_done: true }); 12 13 var theTest = new ATTAcomm( 14 { 15 "steps" : [ 16 { 17 "element" : "test", 18 "test" : { 19 "ATK" : [ 20 [ 21 "property", 22 "objectAttributes", 23 "contains", 24 "autocomplete:both" 25 ], 26 [ 27 "property", 28 "states", 29 "contains", 30 "STATE_SUPPORTS_AUTOCOMPLETION" 31 ] 32 ], 33 "IAccessible2" : [ 34 [ 35 "property", 36 "objectAttributes", 37 "contains", 38 "autocomplete:both" 39 ], 40 [ 41 "property", 42 "states", 43 "contains", 44 "IA2_STATE_SUPPORTS_AUTOCOMPLETION" 45 ] 46 ] 47 }, 48 "title" : "step 1", 49 "type" : "test" 50 } 51 ], 52 "title" : "aria-autocomplete=both" 53 } 54 55 ) ; 56 </script> 57 </head> 58 <body> 59 <p>This test examines the ARIA properties for aria-autocomplete=both.</p> 60 <input role='combobox' id='test' aria-autocomplete='both'> 61 <div id="manualMode"></div> 62 <div id="log"></div> 63 <div id="ATTAmessages"></div> 64 </body> 65 </html>