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

Side by Side Diff: LayoutTests/fast/forms/date-multiple-fields/date-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="date"> 8 <input id="test" type="date">
9 <script> 9 <script>
10 description('This test checks aria-help attribute of fields in multiple fields d ate input UI.'); 10 description('This test checks aria-help attribute of fields in multiple fields d ate input UI.');
(...skipping 28 matching lines...) Expand all
39 eventSender.keyDown('\b'); 39 eventSender.keyDown('\b');
40 checkFocusedElementAXAttributes('AXHelp: Day, AXValueDescription: blank, int Value:0, range:1-31'); 40 checkFocusedElementAXAttributes('AXHelp: Day, AXValueDescription: blank, int Value:0, range:1-31');
41 eventSender.keyDown('\t', ['shiftKey']); 41 eventSender.keyDown('\t', ['shiftKey']);
42 eventSender.keyDown('\b'); 42 eventSender.keyDown('\b');
43 checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: blank, i ntValue:0, range:1-12'); 43 checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: blank, i ntValue:0, range:1-12');
44 44
45 debug(''); 45 debug('');
46 testInput.parentNode.removeChild(testInput); 46 testInput.parentNode.removeChild(testInput);
47 } 47 }
48 </script> 48 </script>
49 <script src="../../../fast/js/resources/js-test-post.js"></script>
50 </body> 49 </body>
51 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698