| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |