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

Side by Side Diff: LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-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 </head> 5 </head>
6 <body> 6 <body>
7 <input id="test" type="datetime-local" value="2012-10-09T12:34:56.789"> 7 <input id="test" type="datetime-local" value="2012-10-09T12:34:56.789">
8 <script> 8 <script>
9 description('This test checks aria-help attribute of fields in multiple fields d atetime-local input UI.'); 9 description('This test checks aria-help attribute of fields in multiple fields d atetime-local input UI.');
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 eventSender.keyDown('\b'); 59 eventSender.keyDown('\b');
60 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Day, AXValu eDescription: blank, 1, 31'); 60 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Day, AXValu eDescription: blank, 1, 31');
61 eventSender.keyDown('\t', ['shiftKey']); 61 eventSender.keyDown('\t', ['shiftKey']);
62 eventSender.keyDown('\b'); 62 eventSender.keyDown('\b');
63 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Month, AXVa lueDescription: blank, 1, 12'); 63 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Month, AXVa lueDescription: blank, 1, 12');
64 64
65 debug(''); 65 debug('');
66 testInput.parentNode.removeChild(testInput); 66 testInput.parentNode.removeChild(testInput);
67 } 67 }
68 </script> 68 </script>
69 <script src="../../../fast/js/resources/js-test-post.js"></script>
70 </body> 69 </body>
71 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698