keyshortcuts_one_shortcut-manual.html (2093B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>keyshortcuts one shortcut</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_PUSH_BUTTON" 25 ], 26 [ 27 "property", 28 "objectAttributes", 29 "contains", 30 "keyshortcuts:Shift+Space" 31 ] 32 ], 33 "MSAA" : [ 34 [ 35 "property", 36 "role", 37 "is", 38 "ROLE_SYSTEM_PUSHBUTTON" 39 ], 40 [ 41 "property", 42 "accKeyboardShortcut", 43 "is", 44 "Shift+Space" 45 ] 46 ], 47 "UIA" : [ 48 [ 49 "property", 50 "ControlType", 51 "is", 52 "Button" 53 ], 54 [ 55 "property", 56 "AcceleratorKey", 57 "is", 58 "Shift+Space" 59 ] 60 ] 61 }, 62 "title" : "step 1", 63 "type" : "test" 64 } 65 ], 66 "title" : "keyshortcuts one shortcut" 67 } 68 69 ) ; 70 </script> 71 </head> 72 <body> 73 <p>This test examines the ARIA properties for keyshortcuts one shortcut.</p> 74 <body> 75 <div id="test" tabindex="0" role="button" aria-keyshortcuts="Shift+Space">Submit</h1> 76 </body> 77 78 <div id="manualMode"></div> 79 <div id="log"></div> 80 <div id="ATTAmessages"></div> 81 </body> 82 </html>