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="../../../resources/js-test.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> |
11 <div id="console"></div> | 11 <div id="console"></div> |
12 <input type=month id=month value="2000-01"> | 12 <input type=month id=month value="2000-01"> |
13 <script> | 13 <script> |
14 description("Tests if month picker mouse operations work as expected."); | 14 description("Tests if month picker mouse operations work as expected."); |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 | 113 |
114 clickMonthButton(1999, 5); | 114 clickMonthButton(1999, 5); |
115 shouldBeFalse('popupWindow.global.picker.monthPopupView.isVisible'); | 115 shouldBeFalse('popupWindow.global.picker.monthPopupView.isVisible'); |
116 shouldBeEqualToString('currentMonth()', '1999-06'); | 116 shouldBeEqualToString('currentMonth()', '1999-06'); |
117 | 117 |
118 finishJSTest(); | 118 finishJSTest(); |
119 } | 119 } |
120 </script> | 120 </script> |
121 </body> | 121 </body> |
122 </html> | 122 </html> |
OLD | NEW |