doc-pagebreak-manual.html (2471B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>doc-pagebreak</title> 5 <link rel="stylesheet" href="/wai-aria/scripts/manual.css"> 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 <script src="/wai-aria/scripts/ATTAcomm.js"></script> 9 <script> 10 setup({explicit_timeout: true, explicit_done: true }); 11 12 var theTest = new ATTAcomm( 13 { 14 "steps" : [ 15 { 16 "element" : "test", 17 "test" : { 18 "ATK" : [ 19 [ 20 "property", 21 "role", 22 "is", 23 "ROLE_SEPARATOR" 24 ], 25 [ 26 "property", 27 "objectAttributes", 28 "contains", 29 "xml-roles:doc-pagebreak" 30 ] 31 ], 32 "AXAPI" : [ 33 [ 34 "property", 35 "AXRole", 36 "is", 37 "AXSplitter" 38 ], 39 [ 40 "property", 41 "AXSubrole", 42 "is", 43 "<nil>" 44 ], 45 [ 46 "property", 47 "AXRoleDescription", 48 "is", 49 "splitter" 50 ] 51 ], 52 "IAccessible2" : [ 53 [ 54 "property", 55 "objectAttributes", 56 "contains", 57 "xml-roles:doc-pagebreak" 58 ] 59 ], 60 "MSAA" : [ 61 [ 62 "property", 63 "role", 64 "is", 65 "ROLE_SYSTEM_SEPARATOR" 66 ] 67 ], 68 "UIA" : [ 69 [ 70 "property", 71 "ControlType", 72 "is", 73 "Text" 74 ], 75 [ 76 "property", 77 "LocalizedControlType", 78 "is", 79 "pagebreak" 80 ] 81 ] 82 }, 83 "title" : "step 1", 84 "type" : "test" 85 } 86 ], 87 "title" : "doc-pagebreak" 88 } 89 90 ) ; 91 </script> 92 </head> 93 <body> 94 <p>This test examines the ARIA properties for doc-pagebreak.</p> 95 <div role="doc-pagebreak" id="test">Text</div> 96 97 <div id="manualMode"></div> 98 <div id="log"></div> 99 <div id="ATTAmessages"></div> 100 </body> 101 </html>