grid_busy_true-manual.html (3976B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>grid busy 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 "role", 23 "is", 24 "ROLE_TABLE" 25 ], 26 [ 27 "property", 28 "objectAttributes", 29 "contains", 30 "xml-roles:grid" 31 ], 32 [ 33 "property", 34 "interfaces", 35 "contains", 36 "Table" 37 ], 38 [ 39 "result", 40 "atk_selection_clear_selection()", 41 "is", 42 "false" 43 ], 44 [ 45 "property", 46 "states", 47 "contains", 48 "STATE_BUSY" 49 ] 50 ], 51 "AXAPI" : [ 52 [ 53 "property", 54 "AXRole", 55 "is", 56 "AXTable" 57 ], 58 [ 59 "property", 60 "AXSubrole", 61 "is", 62 "<nil>" 63 ], 64 [ 65 "property", 66 "AXRoleDescription", 67 "is", 68 "table" 69 ], 70 [ 71 "property", 72 "AXElementBusy", 73 "is", 74 "true" 75 ] 76 ], 77 "IAccessible2" : [ 78 [ 79 "property", 80 "objectAttributes", 81 "contains", 82 "xml-roles:grid" 83 ], 84 [ 85 "property", 86 "interfaces", 87 "contains", 88 "IAccessibleTable2" 89 ] 90 ], 91 "MSAA" : [ 92 [ 93 "property", 94 "role", 95 "is", 96 "ROLE_SYSTEM_TABLE" 97 ], 98 [ 99 "property", 100 "states", 101 "contains", 102 "STATE_SYSTEM_BUSY" 103 ] 104 ], 105 "UIA" : [ 106 [ 107 "property", 108 "ControlType", 109 "is", 110 "DataGrid" 111 ], 112 [ 113 "property", 114 "interfaces", 115 "contains", 116 "selection pattern" 117 ], 118 [ 119 "result", 120 "AriaProperties.busy", 121 "is", 122 "true" 123 ] 124 ] 125 }, 126 "title" : "step 1", 127 "type" : "test" 128 } 129 ], 130 "title" : "grid busy true" 131 } 132 133 ) ; 134 </script> 135 </head> 136 <body> 137 <p>This test examines the ARIA properties for grid busy true.</p> 138 <div role="grid" aria-busy="true" id="test"> 139 <div role="row"> 140 <div role="columnheader">shoes</div> 141 <div role="columnheader">shirts</div> 142 </div> 143 <div role="row"> 144 <div role="gridcell">loafers</div> 145 <div role="gridcell">polo</div> 146 </div> 147 <div role="row"> 148 <div role="gridcell">laced</div> 149 <div role="gridcell">rugby</div> 150 </div> 151 </div> 152 153 <div id="manualMode"></div> 154 <div id="log"></div> 155 <div id="ATTAmessages"></div> 156 </body> 157 </html>