aria-colspan-manual.html (2125B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>aria-colspan</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 "colspan:3" 25 ], 26 [ 27 "result", 28 "atk_table_cell_get_row_column_span()", 29 "contains", 30 "column_span=1" 31 ] 32 ], 33 "AXAPI" : [ 34 [ 35 "property", 36 "AXColumnIndexRange.length", 37 "is", 38 "3" 39 ] 40 ], 41 "IAccessible2" : [ 42 [ 43 "property", 44 "objectAttributes", 45 "contains", 46 "colspan:3" 47 ], 48 [ 49 "property", 50 "columnExtent", 51 "is", 52 "3" 53 ] 54 ], 55 "UIA" : [ 56 [ 57 "property", 58 "GridItem.ColumnSpan", 59 "is", 60 "3" 61 ] 62 ] 63 }, 64 "title" : "step 1", 65 "type" : "test" 66 } 67 ], 68 "title" : "aria-colspan" 69 } 70 71 ) ; 72 </script> 73 </head> 74 <body> 75 <p>This test examines the ARIA properties for aria-colspan.</p> 76 <div role='grid'> 77 <div role='row'> 78 <div role='cell' id='test' aria-colspan='3'>content</div> 79 </div> 80 </div> 81 82 <div id="manualMode"></div> 83 <div id="log"></div> 84 <div id="ATTAmessages"></div> 85 </body> 86 </html>