aria-live_off-manual.html (2656B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>aria-live=off</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 "objectAttributes", 23 "contains", 24 "live:off" 25 ], 26 [ 27 "property", 28 "objectAttributes", 29 "contains", 30 "container-live:off" 31 ] 32 ], 33 "AXAPI" : [ 34 [ 35 "property", 36 "AXARIALive", 37 "is", 38 "off" 39 ] 40 ], 41 "IAccessible2" : [ 42 [ 43 "property", 44 "objectAttributes", 45 "contains", 46 "live:off" 47 ], 48 [ 49 "property", 50 "objectAttributes", 51 "contains", 52 "container-live:off" 53 ] 54 ], 55 "UIA" : [ 56 [ 57 "property", 58 "LiveSetting", 59 "is", 60 "off" 61 ] 62 ] 63 }, 64 "title" : "step 1", 65 "type" : "test" 66 }, 67 { 68 "element" : "child", 69 "test" : { 70 "ATK" : [ 71 [ 72 "property", 73 "objectAttributes", 74 "contains", 75 "container-live:off" 76 ] 77 ], 78 "IAccessible2" : [ 79 [ 80 "property", 81 "objectAttributes", 82 "contains", 83 "container-live:off" 84 ] 85 ] 86 }, 87 "title" : "step 2", 88 "type" : "test" 89 } 90 ], 91 "title" : "aria-live=off" 92 } 93 94 ) ; 95 </script> 96 </head> 97 <body> 98 <p>This test examines the ARIA properties for aria-live=off.</p> 99 <div role='group' id='test' aria-live='off'> 100 <div role='group' id='child'>content</div> 101 </div> 102 103 <div id="manualMode"></div> 104 <div id="log"></div> 105 <div id="ATTAmessages"></div> 106 </body> 107 </html>