OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 if (window.layoutTestController) { | 5 if (window.layoutTestController) { |
6 layoutTestController.dumpAsText(); | 6 layoutTestController.dumpAsText(); |
7 layoutTestController.waitUntilDone(); | 7 layoutTestController.waitUntilDone(); |
8 } | 8 } |
9 | 9 |
10 function test() | 10 function test() |
(...skipping 14 matching lines...) Expand all Loading... |
25 if (window.layoutTestController) | 25 if (window.layoutTestController) |
26 layoutTestController.notifyDone(); | 26 layoutTestController.notifyDone(); |
27 } | 27 } |
28 </script> | 28 </script> |
29 </head> | 29 </head> |
30 <body onload="test()"> | 30 <body onload="test()"> |
31 <p>This test passes if there is no crash when dragging a file over and then
away from the file input element below.</p> | 31 <p>This test passes if there is no crash when dragging a file over and then
away from the file input element below.</p> |
32 <input type="file" id="drop-target"> | 32 <input type="file" id="drop-target"> |
33 </body> | 33 </body> |
34 </html> | 34 </html> |
OLD | NEW |