| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script> | 4 <script> |
| 5 window.enablePixelTesting = true; | 5 window.enablePixelTesting = true; |
| 6 </script> | 6 </script> |
| 7 <script src="../../../../../fast/js/resources/js-test-pre.js"></script> | 7 <script src="../../js/resources/js-test-pre.js"></script> |
| 8 <script src="../../../../../fast/forms/resources/picker-common.js"></script> | 8 <script src="../../forms/resources/picker-common.js"></script> |
| 9 <script src="resources/suggestion-picker-common.js"></script> | 9 <script src="resources/suggestion-picker-common.js"></script> |
| 10 </head> | 10 </head> |
| 11 <body style="background-color: #eeffff;"> | 11 <body style="background-color: #eeffff;"> |
| 12 <script src="resources/suggestion-picker-common.js"></script> | 12 <script src="resources/suggestion-picker-common.js"></script> |
| 13 <input type=date id=date value="10000-12-31" list="suggestions" style="width: 10
0px;"> | 13 <input type=date id=date value="10000-12-31" list="suggestions" style="width: 10
0px;"> |
| 14 <datalist id=suggestions> | 14 <datalist id=suggestions> |
| 15 <option label="Today">2012-01-01</option> | 15 <option label="Today">2012-01-01</option> |
| 16 <option label="Tomorrow">2012-01-02</option> | 16 <option label="Tomorrow">2012-01-02</option> |
| 17 <option>2012-01-03</option> | 17 <option>2012-01-03</option> |
| 18 <option>2012-01-04</option> | 18 <option>2012-01-04</option> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 <script> | 61 <script> |
| 62 openPicker(document.getElementById('date'), finishTest); | 62 openPicker(document.getElementById('date'), finishTest); |
| 63 | 63 |
| 64 function finishTest() { | 64 function finishTest() { |
| 65 popupWindow.focus(); | 65 popupWindow.focus(); |
| 66 eventSender.keyDown('pageDown'); | 66 eventSender.keyDown('pageDown'); |
| 67 finishJSTest(); | 67 finishJSTest(); |
| 68 } | 68 } |
| 69 </script> | 69 </script> |
| 70 <script src="../../../../../fast/js/resources/js-test-post.js"></script> | 70 <script src="../../js/resources/js-test-post.js"></script> |
| 71 </body> | 71 </body> |
| 72 </html> | 72 </html> |
| OLD | NEW |