| 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="../../js/resources/js-test-pre.js"></script> |
| 5 <script src="../../../../../fast/forms/resources/picker-common.js"></script> | 5 <script src="../../forms/resources/picker-common.js"></script> |
| 6 <script src="resources/suggestion-picker-common.js"></script> | 6 <script src="resources/suggestion-picker-common.js"></script> |
| 7 </head> | 7 </head> |
| 8 <body style="background-color: #bbbbbb;"> | 8 <body style="background-color: #bbbbbb;"> |
| 9 <p id="description"></p> | 9 <p id="description"></p> |
| 10 <div id="console"></div> | 10 <div id="console"></div> |
| 11 <input type=month id=month value="2012-12" min="2012-02" max="2012-05" list=sugg
estions> | 11 <input type=month id=month value="2012-12" min="2012-02" max="2012-05" list=sugg
estions> |
| 12 <datalist id=suggestions> | 12 <datalist id=suggestions> |
| 13 <option>2012-01</option> | 13 <option>2012-01</option> |
| 14 <option>2012-02</option> | 14 <option>2012-02</option> |
| 15 <option>2012-03</option> | 15 <option>2012-03</option> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 36 shouldBeEqualToString('entryValues()[0]', '2012-02'); | 36 shouldBeEqualToString('entryValues()[0]', '2012-02'); |
| 37 shouldBeEqualToString('entryValues()[1]', '2012-03'); | 37 shouldBeEqualToString('entryValues()[1]', '2012-03'); |
| 38 shouldBeEqualToString('entryValues()[2]', '2012-04'); | 38 shouldBeEqualToString('entryValues()[2]', '2012-04'); |
| 39 shouldBeEqualToString('entryValues()[3]', '2012-05'); | 39 shouldBeEqualToString('entryValues()[3]', '2012-05'); |
| 40 shouldBeEqualToString('entryValues()[4]', '@openCalendarPicker'); | 40 shouldBeEqualToString('entryValues()[4]', '@openCalendarPicker'); |
| 41 | 41 |
| 42 finishJSTest(); | 42 finishJSTest(); |
| 43 } | 43 } |
| 44 | 44 |
| 45 </script> | 45 </script> |
| 46 <script src="../../../../../fast/js/resources/js-test-post.js"></script> | 46 <script src="../../js/resources/js-test-post.js"></script> |
| 47 </body> | 47 </body> |
| 48 </html> | 48 </html> |
| OLD | NEW |