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