treegrid-manual.html (2719B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>treegrid</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 "Table" 31 ], 32 [ 33 "property", 34 "interfaces", 35 "contains", 36 "Selection" 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 "IAccessible2" : [ 54 [ 55 "property", 56 "interfaces", 57 "contains", 58 "IAccessibleTable2" 59 ], 60 [ 61 "result", 62 "IAccessible::accSelect()", 63 "is", 64 "TBD" 65 ], 66 [ 67 "result", 68 "IAccessible::get_accSelection()", 69 "is", 70 "TBD" 71 ] 72 ], 73 "MSAA" : [ 74 [ 75 "property", 76 "role", 77 "is", 78 "ROLE_SYSTEM_OUTLINE" 79 ] 80 ], 81 "UIA" : [ 82 [ 83 "property", 84 "ControlType", 85 "is", 86 "DataGrid" 87 ] 88 ] 89 }, 90 "title" : "step 1", 91 "type" : "test" 92 } 93 ], 94 "title" : "treegrid" 95 } 96 97 ) ; 98 </script> 99 </head> 100 <body> 101 <p>This test examines the ARIA properties for treegrid.</p> 102 <div role='treegrid' id='test'> 103 <div role='row'> 104 <div role='gridcell'>content</div> 105 </div> 106 </div> 107 108 <div id="manualMode"></div> 109 <div id="log"></div> 110 <div id="ATTAmessages"></div> 111 </body> 112 </html>