log-manual.html (3319B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>log</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 "role", 23 "is", 24 "ROLE_LOG" 25 ], 26 [ 27 "property", 28 "objectAttributes", 29 "contains", 30 "xml-roles:log" 31 ], 32 [ 33 "property", 34 "objectAttributes", 35 "contains", 36 "container-live:polite" 37 ], 38 [ 39 "property", 40 "objectAttributes", 41 "contains", 42 "live:polite" 43 ], 44 [ 45 "property", 46 "objectAttributes", 47 "contains", 48 "container-live-role:log" 49 ] 50 ], 51 "AXAPI" : [ 52 [ 53 "property", 54 "AXRole", 55 "is", 56 "AXGroup" 57 ], 58 [ 59 "property", 60 "AXSubrole", 61 "is", 62 "AXApplicationLog" 63 ] 64 ], 65 "IAccessible2" : [ 66 [ 67 "property", 68 "objectAttributes", 69 "contains", 70 "xml-roles:log" 71 ], 72 [ 73 "property", 74 "objectAttributes", 75 "contains", 76 "container-live:polite" 77 ], 78 [ 79 "property", 80 "objectAttributes", 81 "contains", 82 "live:polite" 83 ], 84 [ 85 "property", 86 "objectAttributes", 87 "contains", 88 "container-live-role:log" 89 ] 90 ], 91 "UIA" : [ 92 [ 93 "property", 94 "ControlType", 95 "is", 96 "Group" 97 ], 98 [ 99 "property", 100 "LocalizedControlType", 101 "is", 102 "log" 103 ], 104 [ 105 "property", 106 "LiveSetting", 107 "is", 108 "Polite (1)" 109 ] 110 ] 111 }, 112 "title" : "step 1", 113 "type" : "test" 114 } 115 ], 116 "title" : "log" 117 } 118 119 ) ; 120 </script> 121 </head> 122 <body> 123 <p>This test examines the ARIA properties for log.</p> 124 <div role='log' id='test'>content</div> 125 126 <div id="manualMode"></div> 127 <div id="log"></div> 128 <div id="ATTAmessages"></div> 129 </body> 130 </html>