aria-valuetext-manual.html (1930B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>aria-valuetext</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 "valuetext:hello world" 25 ] 26 ], 27 "AXAPI" : [ 28 [ 29 "property", 30 "AXValueDescription", 31 "is", 32 "hello world" 33 ] 34 ], 35 "IAccessible2" : [ 36 [ 37 "property", 38 "accValue", 39 "is", 40 "hello world" 41 ], 42 [ 43 "property", 44 "objectAttributes", 45 "contains", 46 "valuetext:hello world" 47 ] 48 ], 49 "UIA" : [ 50 [ 51 "property", 52 "Value.Value", 53 "is", 54 "hello world" 55 ] 56 ] 57 }, 58 "title" : "step 1", 59 "type" : "test" 60 } 61 ], 62 "title" : "aria-valuetext" 63 } 64 65 ) ; 66 </script> 67 </head> 68 <body> 69 <p>This test examines the ARIA properties for aria-valuetext.</p> 70 <div role='slider' id='test' aria-valuetext='hello world'>content</div> 71 72 <div id="manualMode"></div> 73 <div id="log"></div> 74 <div id="ATTAmessages"></div> 75 </body> 76 </html>