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

Side by Side Diff: LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-stepup-stepdown-from-renderer.html

Issue 58533003: Move fast/js/resources files to resources. (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="../../js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 <script src="../resources/common.js"></script> 5 <script src="../resources/common.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 description('Check stepping-up and -down for date input fields from renderer.'); 9 description('Check stepping-up and -down for date input fields from renderer.');
10 if (!window.eventSender) 10 if (!window.eventSender)
11 debug('This test requires eventSender.'); 11 debug('This test requires eventSender.');
12 12
13 var input = document.createElement('input'); 13 var input = document.createElement('input');
14 input.type = 'date'; 14 input.type = 'date';
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 shouldBeEqualToString('stepUp("1990-01-01", "2000-01-01", "2009-12-31")', '2000- 01-01'); 75 shouldBeEqualToString('stepUp("1990-01-01", "2000-01-01", "2009-12-31")', '2000- 01-01');
76 shouldBeEqualToString('stepDown("1990-01-01", "2000-01-01", "2009-12-31")', '200 9-01-01'); 76 shouldBeEqualToString('stepDown("1990-01-01", "2000-01-01", "2009-12-31")', '200 9-01-01');
77 shouldBeEqualToString('stepUp("2020-01-01", "2000-01-01", "2000-12-31")', '2000- 01-01'); 77 shouldBeEqualToString('stepUp("2020-01-01", "2000-01-01", "2000-12-31")', '2000- 01-01');
78 shouldBeEqualToString('stepDown("2020-01-01", "2000-01-01", "2000-12-31")', '200 0-01-01'); 78 shouldBeEqualToString('stepDown("2020-01-01", "2000-01-01", "2000-12-31")', '200 0-01-01');
79 79
80 debug(''); 80 debug('');
81 input.remove(); 81 input.remove();
82 </script> 82 </script>
83 </body> 83 </body>
84 </html> 84 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698