region_without_name-manual.html (3196B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>region without name</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_SECTION" 25 ], 26 [ 27 "property", 28 "interfaces", 29 "contains", 30 "Text" 31 ], 32 [ 33 "property", 34 "interfaces", 35 "contains", 36 "Hypertext" 37 ] 38 ], 39 "AXAPI" : [ 40 [ 41 "property", 42 "AXRole", 43 "is", 44 "AXGroup" 45 ], 46 [ 47 "property", 48 "AXSubrole", 49 "is", 50 "<nil>" 51 ], 52 [ 53 "property", 54 "AXRoleDescription", 55 "is", 56 "group" 57 ] 58 ], 59 "IAccessible2" : [ 60 [ 61 "property", 62 "interfaces", 63 "contains", 64 "IAccessibleText2" 65 ], 66 [ 67 "property", 68 "interfaces", 69 "contains", 70 "IAccessibleHypertext2" 71 ], 72 [ 73 "property", 74 "role", 75 "is", 76 "IA2_ROLE_SECTION" 77 ] 78 ], 79 "MSAA" : [ 80 [ 81 "property", 82 "role", 83 "is", 84 "ROLE_SYSTEM_GROUPING" 85 ] 86 ], 87 "UIA" : [ 88 [ 89 "property", 90 "Control Group", 91 "is", 92 "Group" 93 ], 94 [ 95 "property", 96 "landmarkType", 97 "isNot", 98 "Custom" 99 ], 100 [ 101 "property", 102 "localizedLandmarkType", 103 "isNot", 104 "region" 105 ] 106 ] 107 }, 108 "title" : "step 1", 109 "type" : "test" 110 } 111 ], 112 "title" : "region without name" 113 } 114 115 ) ; 116 </script> 117 </head> 118 <body> 119 <p>This test examines the ARIA properties for region without name.</p> 120 <div role="region" id="test" tabindex="-1"> 121 <article>This is article 1</article> 122 </div> 123 124 <div id="manualMode"></div> 125 <div id="log"></div> 126 <div id="ATTAmessages"></div> 127 </body> 128 </html>