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