| 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 if (window.internals) | 6 if (window.internals) |
| 7 internals.settings.setLangAttributeAwareFormControlUIEnabled(true); | 7 internals.settings.setLangAttributeAwareFormControlUIEnabled(true); |
| 8 </script> | 8 </script> |
| 9 <script src="../../js/resources/js-test-pre.js"></script> | 9 <script src="../../js/resources/js-test-pre.js"></script> |
| 10 <script src="../../forms/resources/picker-common.js"></script> | 10 <script src="../../forms/resources/picker-common.js"></script> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 <script> | 40 <script> |
| 41 openPicker(document.getElementById('datetime-local'), finishTest); | 41 openPicker(document.getElementById('datetime-local'), finishTest); |
| 42 | 42 |
| 43 function finishTest() { | 43 function finishTest() { |
| 44 popupWindow.focus(); | 44 popupWindow.focus(); |
| 45 eventSender.keyDown('downArrow'); | 45 eventSender.keyDown('downArrow'); |
| 46 finishJSTest(); | 46 finishJSTest(); |
| 47 } | 47 } |
| 48 </script> | 48 </script> |
| 49 <script src="../../js/resources/js-test-post.js"></script> | |
| 50 </body> | 49 </body> |
| 51 </html> | 50 </html> |
| OLD | NEW |