treegrid_orientation_unspecified-manual.html (4021B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>treegrid orientation unspecified</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_TREE_TABLE" 25 ], 26 [ 27 "property", 28 "interfaces", 29 "contains", 30 "Selection" 31 ], 32 [ 33 "property", 34 "states", 35 "doesNotContain", 36 "STATE_VERTICAL" 37 ], 38 [ 39 "property", 40 "states", 41 "doesNotContain", 42 "STATE_HORIZONTAL" 43 ] 44 ], 45 "AXAPI" : [ 46 [ 47 "property", 48 "AXRole", 49 "is", 50 "AXTable" 51 ], 52 [ 53 "property", 54 "AXSubrole", 55 "is", 56 "<nil>" 57 ], 58 [ 59 "property", 60 "AXRoleDescription", 61 "is", 62 "table" 63 ], 64 [ 65 "property", 66 "AXOrientation", 67 "isNot", 68 "AXVerticalOrientation" 69 ], 70 [ 71 "property", 72 "AXOrientation", 73 "isNot", 74 "AXHorizontalOrientation" 75 ] 76 ], 77 "IAccessible2" : [ 78 [ 79 "property", 80 "role", 81 "is", 82 "ROLE_SYSTEM_OUTLINE" 83 ], 84 [ 85 "property", 86 "states", 87 "doesNotContain", 88 "IA2_STATE_VERTICAL" 89 ], 90 [ 91 "property", 92 "states", 93 "doesNotContain", 94 "IA2_STATE_HORIZONTAL" 95 ], 96 [ 97 "property", 98 "interfaces", 99 "contains", 100 "IAccessibleTable2" 101 ] 102 ], 103 "MSAA" : [ 104 [ 105 "property", 106 "role", 107 "is", 108 "ROLE_SYSTEM_OUTLINE" 109 ] 110 ], 111 "UIA" : [ 112 [ 113 "property", 114 "ControlType", 115 "is", 116 "DataGrid" 117 ], 118 [ 119 "property", 120 "Orientation", 121 "isNot", 122 "vertical" 123 ], 124 [ 125 "property", 126 "Orientation", 127 "isNot", 128 "horizontal" 129 ] 130 ] 131 }, 132 "title" : "step 1", 133 "type" : "test" 134 } 135 ], 136 "title" : "treegrid orientation unspecified" 137 } 138 139 ) ; 140 </script> 141 </head> 142 <body> 143 <p>This test examines the ARIA properties for treegrid orientation unspecified.</p> 144 <div role="treegrid" tabindex="0" aria-activedescendant="foo" id="test"> 145 <div role="row"> 146 <div role="cell" id="foo">c1</div> 147 <div role="cell">c2</div> 148 </div> 149 </div> 150 151 <div id="manualMode"></div> 152 <div id="log"></div> 153 <div id="ATTAmessages"></div> 154 </body> 155 </html>