| 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="../../../resources/js-test.js"></script> | 7 <script src="../../../resources/js-test.js"></script> |
| 8 <script src="../../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> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 <option>2016-02</option> | 52 <option>2016-02</option> |
| 53 <option>2017-03</option> | 53 <option>2017-03</option> |
| 54 <option>2018-04</option> | 54 <option>2018-04</option> |
| 55 <option>2019-05</option> | 55 <option>2019-05</option> |
| 56 </datalist> | 56 </datalist> |
| 57 | 57 |
| 58 <p id="description" style="opacity: 0"></p> | 58 <p id="description" style="opacity: 0"></p> |
| 59 <div id="console" style="opacity: 0"></div> | 59 <div id="console" style="opacity: 0"></div> |
| 60 | 60 |
| 61 <script> | 61 <script> |
| 62 openPicker(document.getElementById('month'), finishTest); | 62 openPickerWithMock(document.getElementById('month'), 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 </body> | 70 </body> |
| 71 </html> | 71 </html> |
| OLD | NEW |