term_role-manual.html (2532B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>term role</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_DESCRIPTION_TERM" 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 "AXTerm" 51 ], 52 [ 53 "property", 54 "AXRoleDescription", 55 "is", 56 "term" 57 ] 58 ], 59 "MSAA" : [ 60 [ 61 "property", 62 "role", 63 "is", 64 "ROLE_SYSTEM_TERM" 65 ], 66 [ 67 "property", 68 "states", 69 "contains", 70 "ROLE_SYSTEM_READONLY" 71 ] 72 ], 73 "UIA" : [ 74 [ 75 "property", 76 "ControlType", 77 "is", 78 "Text" 79 ] 80 ] 81 }, 82 "title" : "step 1", 83 "type" : "test" 84 } 85 ], 86 "title" : "term role" 87 } 88 89 ) ; 90 </script> 91 </head> 92 <body> 93 <p>This test examines the ARIA properties for term role.</p> 94 <div role="term" id='test' aria-describedby="dfn"> 95 w3c 96 </div> 97 <div role="definition" id="dfn"> 98 World Wide Web Consortium 99 </div> 100 101 102 <div id="manualMode"></div> 103 <div id="log"></div> 104 <div id="ATTAmessages"></div> 105 </body> 106 </html>