row_rowindex_4-manual.html (3575B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>row rowindex 4</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 "role", 23 "is", 24 "ROLE_TABLE_ROW" 25 ], 26 [ 27 "property", 28 "objectAttributes", 29 "contains", 30 "rowindex:4" 31 ] 32 ], 33 "AXAPI" : [ 34 [ 35 "property", 36 "AXRole", 37 "is", 38 "AXRow" 39 ] 40 ], 41 "IAccessible2" : [ 42 [ 43 "property", 44 "role", 45 "is", 46 "ROLE_SYSTEM_ROW" 47 ], 48 [ 49 "property", 50 "objectAttributes", 51 "contains", 52 "rowindex:4" 53 ] 54 ], 55 "MSAA" : [ 56 [ 57 "property", 58 "role", 59 "is", 60 "ROLE_SYSTEM_ROW" 61 ] 62 ], 63 "UIA" : [ 64 [ 65 "property", 66 "ControlType", 67 "is", 68 "DataItem" 69 ], 70 [ 71 "property", 72 "DataItem.Row", 73 "is", 74 "3" 75 ] 76 ] 77 }, 78 "title" : "step 1", 79 "type" : "test" 80 }, 81 { 82 "element" : "cell", 83 "test" : { 84 "ATK" : [ 85 [ 86 "property", 87 "role", 88 "is", 89 "ROLE_TABLE_CELL" 90 ], 91 [ 92 "result", 93 "atk_table_cell_get_position()", 94 "contains", 95 "row=3" 96 ] 97 ], 98 "AXAPI" : [ 99 [ 100 "property", 101 "AXRole", 102 "is", 103 "AXCell" 104 ], 105 [ 106 "property", 107 "AXARIARowIndex", 108 "is", 109 "4" 110 ] 111 ], 112 "UIA" : [ 113 [ 114 "property", 115 "ControlType", 116 "is", 117 "DataItem" 118 ], 119 [ 120 "property", 121 "Row", 122 "is", 123 "3" 124 ] 125 ] 126 }, 127 "title" : "step 2", 128 "type" : "test" 129 } 130 ], 131 "title" : "row rowindex 4" 132 } 133 134 ) ; 135 </script> 136 </head> 137 <body> 138 <p>This test examines the ARIA properties for row rowindex 4.</p> 139 <div role="table"> 140 <div id="test" role="row" aria-rowindex="4"> 141 <div id="cell" role="cell">test cell</div> 142 </div> 143 </div> 144 145 <div id="manualMode"></div> 146 <div id="log"></div> 147 <div id="ATTAmessages"></div> 148 </body> 149 </html>