Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(377)

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-aria-attributes.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698