OLD | NEW |
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/common.js"></script> | 5 <script src="../resources/common.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <p id="description"></p> | 8 <p id="description"></p> |
9 <div id="console"></div> | 9 <div id="console"></div> |
10 <input type="time" id="input" value="01:01:01"> | 10 <input type="time" id="input" value="01:01:01"> |
(...skipping 21 matching lines...) Expand all Loading... |
32 // We assume the date format is h:m a. | 32 // We assume the date format is h:m a. |
33 | 33 |
34 input.focus(); | 34 input.focus(); |
35 eventSender.keyDown('downArrow'); | 35 eventSender.keyDown('downArrow'); |
36 | 36 |
37 shouldBeEqualToString('input.value', '01:01:01'); | 37 shouldBeEqualToString('input.value', '01:01:01'); |
38 shouldBe('eventsCounter.input', '1'); | 38 shouldBe('eventsCounter.input', '1'); |
39 shouldBe('eventsCounter.change', '1'); | 39 shouldBe('eventsCounter.change', '1'); |
40 | 40 |
41 </script> | 41 </script> |
42 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
43 </body> | 42 </body> |
44 </html> | 43 </html> |
OLD | NEW |