OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../../fast/js/resources/js-test-pre.js"></script> |
5 <script src="../resources/multiple-fields-ax-aria-attributes.js"></script> | 5 <script src="../resources/multiple-fields-ax-aria-attributes.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <input id=test type="time" value="12:34:56.789"> | 8 <input id=test type="time" value="12:34:56.789"> |
9 <script> | 9 <script> |
10 description('This test checks aria-help attribute of fields in multiple fields t
ime input UI.'); | 10 description('This test checks aria-help attribute of fields in multiple fields t
ime input UI.'); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 keyDown('\t', ['shiftKey']); | 53 keyDown('\t', ['shiftKey']); |
54 keyDown('\b'); | 54 keyDown('\b'); |
55 checkFocusedElementAXAttributes('AXHelp: Minutes, AXValueDescription: blank, int
Value:0, range:0-59'); | 55 checkFocusedElementAXAttributes('AXHelp: Minutes, AXValueDescription: blank, int
Value:0, range:0-59'); |
56 keyDown('\t', ['shiftKey']); | 56 keyDown('\t', ['shiftKey']); |
57 keyDown('\b'); | 57 keyDown('\b'); |
58 checkFocusedElementAXAttributes('AXHelp: Hours, AXValueDescription: blank, intVa
lue:0, range:1-12'); | 58 checkFocusedElementAXAttributes('AXHelp: Hours, AXValueDescription: blank, intVa
lue:0, range:1-12'); |
59 | 59 |
60 debug(''); | 60 debug(''); |
61 testInput.parentNode.removeChild(testInput); | 61 testInput.parentNode.removeChild(testInput); |
62 </script> | 62 </script> |
63 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
64 </body> | 63 </body> |
65 </html> | 64 </html> |
OLD | NEW |