aria-multiselectable_false-manual.html (1656B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>aria-multiselectable=false</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 "states", 23 "doesNotContain", 24 "STATE_MULTISELECTABLE" 25 ] 26 ], 27 "MSAA" : [ 28 [ 29 "property", 30 "states", 31 "doesNotContain", 32 "STATE_SYSTEM_MULTISELECTABLE" 33 ], 34 [ 35 "property", 36 "states", 37 "doesNotContain", 38 "STATE_SYSTEM_EXTSELECTABLE" 39 ] 40 ] 41 }, 42 "title" : "step 1", 43 "type" : "test" 44 } 45 ], 46 "title" : "aria-multiselectable=false" 47 } 48 49 ) ; 50 </script> 51 </head> 52 <body> 53 <p>This test examines the ARIA properties for aria-multiselectable=false.</p> 54 <div role='grid' id='test' aria-multiselectable='false'> 55 <div role='row'> 56 <div role='cell'>content</div> 57 </div> 58 </div> 59 60 <div id="manualMode"></div> 61 <div id="log"></div> 62 <div id="ATTAmessages"></div> 63 </body> 64 </html>