| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="/js-test-resources/ahem.js"></script> |
| 2 | 3 |
| 3 <!-- | 4 <!-- |
| 4 Tests the string displayed when a File created using the FileSystem API is used | 5 Tests the string displayed when a File created using the FileSystem API is used |
| 5 in the FileList of a <input type="file"> element. To run this test manually, | 6 in the FileList of a <input type="file"> element. To run this test manually, |
| 6 drag the black box over the input field. | 7 drag the black box over the input field. |
| 7 | 8 |
| 8 Expectation: the file name displayed by the <input> UI should be hello.txt. The | 9 Expectation: the file name displayed by the <input> UI should be hello.txt. The |
| 9 renderer should not crash after the name shows up. | 10 renderer should not crash after the name shows up. |
| 10 --> | 11 --> |
| 11 | 12 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 eventSender.dragMode = true; | 91 eventSender.dragMode = true; |
| 91 eventSender.mouseMoveTo(startX, startY); | 92 eventSender.mouseMoveTo(startX, startY); |
| 92 eventSender.mouseDown(); | 93 eventSender.mouseDown(); |
| 93 eventSender.leapForward(250); | 94 eventSender.leapForward(250); |
| 94 eventSender.mouseMoveTo(targetX, targetY); | 95 eventSender.mouseMoveTo(targetX, targetY); |
| 95 eventSender.mouseUp(); | 96 eventSender.mouseUp(); |
| 96 } | 97 } |
| 97 } | 98 } |
| 98 </script> | 99 </script> |
| 99 | 100 |
| OLD | NEW |