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