aria-flowto-manual.html (2283B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>aria-flowto</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 "relation", 22 "RELATION_FLOWS_TO", 23 "is", 24 "[next]" 25 ] 26 ], 27 "AXAPI" : [ 28 [ 29 "property", 30 "AXLinkedUIElements", 31 "is", 32 "[next]" 33 ] 34 ], 35 "IAccessible2" : [ 36 [ 37 "relation", 38 "IA2_RELATION_FLOWS_TO", 39 "is", 40 "[next]" 41 ] 42 ], 43 "UIA" : [ 44 [ 45 "property", 46 "FlowsTo", 47 "is", 48 "[next]" 49 ] 50 ] 51 }, 52 "title" : "step 1", 53 "type" : "test" 54 }, 55 { 56 "element" : "next", 57 "test" : { 58 "ATK" : [ 59 [ 60 "relation", 61 "RELATION_FLOWS_FROM", 62 "is", 63 "[test]" 64 ] 65 ], 66 "IAccessible2" : [ 67 [ 68 "relation", 69 "IA2_RELATION_FLOWS_FROM", 70 "is", 71 "[test]" 72 ] 73 ] 74 }, 75 "title" : "step 2", 76 "type" : "test" 77 } 78 ], 79 "title" : "aria-flowto" 80 } 81 82 ) ; 83 </script> 84 </head> 85 <body> 86 <p>This test examines the ARIA properties for aria-flowto.</p> 87 <div role='group' id='test' aria-flowto='next'>content</div> 88 <div role='group' id='next'>content</div> 89 90 <div id="manualMode"></div> 91 <div id="log"></div> 92 <div id="ATTAmessages"></div> 93 </body> 94 </html>