| 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" list=suggestions> | 11 <input type=month id=month value="2012-12" list=suggestions> |
| 12 <datalist id=suggestions> | 12 <datalist id=suggestions> |
| 13 <option label="This Month">2012-01</option> | 13 <option label="This Month">2012-01</option> |
| 14 <option>2012-02</option> | 14 <option>2012-02</option> |
| 15 <option>2012-03</option> | 15 <option>2012-03</option> |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 shouldBeEqualToString('document.getElementById("month").value', '2016-12'); | 175 shouldBeEqualToString('document.getElementById("month").value', '2016-12'); |
| 176 | 176 |
| 177 sendKey(document.getElementById('month'), "F4"); | 177 sendKey(document.getElementById('month'), "F4"); |
| 178 if (document.getElementById('mock-page-popup')) | 178 if (document.getElementById('mock-page-popup')) |
| 179 testPassed("F4 opened picker."); | 179 testPassed("F4 opened picker."); |
| 180 | 180 |
| 181 finishJSTest(); | 181 finishJSTest(); |
| 182 } | 182 } |
| 183 | 183 |
| 184 </script> | 184 </script> |
| 185 <script src="../../../../../fast/js/resources/js-test-post.js"></script> | 185 <script src="../../js/resources/js-test-post.js"></script> |
| 186 </body> | 186 </body> |
| 187 </html> | 187 </html> |
| OLD | NEW |