aria-disabled_true-manual.html (2131B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>aria-disabled=true</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_ENABLED" 25 ] 26 ], 27 "AXAPI" : [ 28 [ 29 "property", 30 "AXEnabled", 31 "is", 32 "NO" 33 ] 34 ], 35 "MSAA" : [ 36 [ 37 "property", 38 "states", 39 "contains", 40 "STATE_SYSTEM_UNAVAILABLE" 41 ] 42 ], 43 "UIA" : [ 44 [ 45 "property", 46 "IsEnabled", 47 "is", 48 "false" 49 ] 50 ] 51 }, 52 "title" : "step 1", 53 "type" : "test" 54 }, 55 { 56 "element" : "checkbox", 57 "test" : { 58 "MSAA" : [ 59 [ 60 "property", 61 "states", 62 "contains", 63 "STATE_SYSTEM_UNAVAILABLE" 64 ] 65 ] 66 }, 67 "title" : "step 2", 68 "type" : "test" 69 } 70 ], 71 "title" : "aria-disabled=true" 72 } 73 74 ) ; 75 </script> 76 </head> 77 <body> 78 <p>This test examines the ARIA properties for aria-disabled=true.</p> 79 <div role='group' id='test' aria-disabled='true'> 80 <div role='checkbox' id='checkbox' tabindex='0'>content</div> 81 </div> 82 83 <div id="manualMode"></div> 84 <div id="log"></div> 85 <div id="ATTAmessages"></div> 86 </body> 87 </html>