| 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="../../forms/resources/picker-common.js"></script> | 5 <script src="../../forms/resources/picker-common.js"></script> |
| 6 <script src="resources/calendar-picker-common.js"></script> | 6 <script src="resources/calendar-picker-common.js"></script> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <p id="description"></p> | 9 <p id="description"></p> |
| 10 <div id="console"></div> | 10 <div id="console"></div> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 debug('Choosing the same value from the calendar picker. No events should be
dispatched.'); | 41 debug('Choosing the same value from the calendar picker. No events should be
dispatched.'); |
| 42 eventSender.keyDown('\n'); | 42 eventSender.keyDown('\n'); |
| 43 shouldBeEqualToString('date1.value', '2000-01-03'); | 43 shouldBeEqualToString('date1.value', '2000-01-03'); |
| 44 shouldBeUndefined('eventsCounter.input'); | 44 shouldBeUndefined('eventsCounter.input'); |
| 45 shouldBeUndefined('eventsCounter.change'); | 45 shouldBeUndefined('eventsCounter.change'); |
| 46 | 46 |
| 47 finishJSTest(); | 47 finishJSTest(); |
| 48 } | 48 } |
| 49 </script> | 49 </script> |
| 50 <script src="../../js/resources/js-test-post.js"></script> | |
| 51 </body> | 50 </body> |
| 52 </html> | 51 </html> |
| OLD | NEW |