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