| 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/common.js"></script> | 5 <script src="../../forms/resources/common.js"></script> |
| 6 <script src="../../forms/resources/picker-common.js"></script> | 6 <script src="../../forms/resources/picker-common.js"></script> |
| 7 <script src="resources/calendar-picker-common.js"></script> | 7 <script src="resources/calendar-picker-common.js"></script> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 <p id="description"></p> | 10 <p id="description"></p> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 debug('Check that clicking the month popup sets the month.'); | 86 debug('Check that clicking the month popup sets the month.'); |
| 87 | 87 |
| 88 clickMonthButton(1999, 5); | 88 clickMonthButton(1999, 5); |
| 89 shouldBeFalse('popupWindow.global.picker.monthPopupView.isVisible'); | 89 shouldBeFalse('popupWindow.global.picker.monthPopupView.isVisible'); |
| 90 shouldBeEqualToString('currentMonth()', '1999-06'); | 90 shouldBeEqualToString('currentMonth()', '1999-06'); |
| 91 | 91 |
| 92 finishJSTest(); | 92 finishJSTest(); |
| 93 } | 93 } |
| 94 </script> | 94 </script> |
| 95 <script src="../../js/resources/js-test-post.js"></script> | |
| 96 </body> | 95 </body> |
| 97 </html> | 96 </html> |
| OLD | NEW |