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

Side by Side Diff: LayoutTests/fast/forms/week-multiple-fields/week-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 week input fields from renderer.'); 9 description('Check stepping-up and -down for week 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 = 'week'; 14 input.type = 'week';
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 shouldBeEqualToString('stepUp("1990-W01", "2000-W01", "2009-W52")', '2000-W01'); 59 shouldBeEqualToString('stepUp("1990-W01", "2000-W01", "2009-W52")', '2000-W01');
60 shouldBeEqualToString('stepDown("1990-W01", "2000-W01", "2009-W52")', '2009-W01' ); 60 shouldBeEqualToString('stepDown("1990-W01", "2000-W01", "2009-W52")', '2009-W01' );
61 shouldBeEqualToString('stepUp("2020-W01", "2000-W01", "2000-W52")', '2000-W01'); 61 shouldBeEqualToString('stepUp("2020-W01", "2000-W01", "2000-W52")', '2000-W01');
62 shouldBeEqualToString('stepDown("2020-W01", "2000-W01", "2000-W52")', '2000-W01' ); 62 shouldBeEqualToString('stepDown("2020-W01", "2000-W01", "2000-W52")', '2000-W01' );
63 63
64 debug(''); 64 debug('');
65 input.remove(); 65 input.remove();
66 </script> 66 </script>
67 </body> 67 </body>
68 </html> 68 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698