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

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-stepup-stepdown-from-renderer.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="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.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 time input fields from renderer. No cases of empty initial values.'); 9 description('Check stepping-up and -down for time input fields from renderer. No cases of empty initial values.');
10 if (!window.internals) 10 if (!window.internals)
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 shouldBeEqualToString('stepDown("10:00", 1, "10:00", "15:00")', '15:00'); 337 shouldBeEqualToString('stepDown("10:00", 1, "10:00", "15:00")', '15:00');
338 shouldBeEqualToString('stepUp("17:00", 7200, "17:00", "20:00")', '19:00'); 338 shouldBeEqualToString('stepUp("17:00", 7200, "17:00", "20:00")', '19:00');
339 shouldBeEqualToString('stepDown("17:00", 7200, "17:00", "20:00")', '19:00'); 339 shouldBeEqualToString('stepDown("17:00", 7200, "17:00", "20:00")', '19:00');
340 shouldBeEqualToString('stepUp("17:00", 7200, "17:00", "18:00")', '17:00'); 340 shouldBeEqualToString('stepUp("17:00", 7200, "17:00", "18:00")', '17:00');
341 shouldBeEqualToString('stepDown("17:00", 7200, "17:00", "18:00")', '17:00'); 341 shouldBeEqualToString('stepDown("17:00", 7200, "17:00", "18:00")', '17:00');
342 342
343 setDateTimeFormat(''); 343 setDateTimeFormat('');
344 debug(''); 344 debug('');
345 document.body.removeChild(input); 345 document.body.removeChild(input);
346 </script> 346 </script>
347 <script src="../../js/resources/js-test-post.js"></script>
348 </body> 347 </body>
349 </html> 348 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698