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