| 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; padding: 0 50px;" dir="rtl"> | 11 <body style="background-color: #eeffff; padding: 0 50px;" dir="rtl"> |
| 12 <input type=time id=time value="12:31" list="suggestions" style="width: 100px;"> | 12 <input type=time id=time value="12:31" list="suggestions" style="width: 100px;"> |
| 13 <datalist id=suggestions> | 13 <datalist id=suggestions> |
| 14 <option label="Now">01:01</option> | 14 <option label="Now">01:01</option> |
| 15 <option label="Recommended">01:02</option> | 15 <option label="Recommended">01:02</option> |
| 16 <option>01:03</option> | 16 <option>01:03</option> |
| 17 <option>01:04</option> | 17 <option>01:04</option> |
| 18 <option>01:05</option> | 18 <option>01:05</option> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 <script> | 39 <script> |
| 40 openPicker(document.getElementById('time'), finishTest); | 40 openPicker(document.getElementById('time'), finishTest); |
| 41 | 41 |
| 42 function finishTest() { | 42 function finishTest() { |
| 43 popupWindow.focus(); | 43 popupWindow.focus(); |
| 44 eventSender.keyDown('downArrow'); | 44 eventSender.keyDown('downArrow'); |
| 45 finishJSTest(); | 45 finishJSTest(); |
| 46 } | 46 } |
| 47 </script> | 47 </script> |
| 48 <script src="../../../../../fast/js/resources/js-test-post.js"></script> | 48 <script src="../../js/resources/js-test-post.js"></script> |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |