none-manual.html (1841B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>none</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 "accessible", 23 "is", 24 "false" 25 ] 26 ], 27 "AXAPI" : [ 28 [ 29 "property", 30 "accessible", 31 "is", 32 "false" 33 ] 34 ], 35 "IAccessible2" : [ 36 [ 37 "property", 38 "accessible", 39 "is", 40 "false" 41 ] 42 ], 43 "MSAA" : [ 44 [ 45 "property", 46 "accessible", 47 "is", 48 "false" 49 ] 50 ], 51 "UIA" : [ 52 [ 53 "property", 54 "accessible", 55 "is", 56 "false" 57 ] 58 ] 59 }, 60 "title" : "step 1", 61 "type" : "test" 62 } 63 ], 64 "title" : "none" 65 } 66 67 ) ; 68 </script> 69 </head> 70 <body> 71 <p>This test examines the ARIA properties for none.</p> 72 <img id='test' role='none' src="foo.jpg" alt="footest"/> 73 74 <div id="manualMode"></div> 75 <div id="log"></div> 76 <div id="ATTAmessages"></div> 77 </body> 78 </html>