OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../../fast/js/resources/js-test-pre.js"></script> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <p id="description"></p> | 6 <p id="description"></p> |
7 <div id="console"></div> | 7 <div id="console"></div> |
8 <div id="editable" contentEditable=true style="width:200px; height:200px"></div> | 8 <div id="editable" contentEditable=true style="width:200px; height:200px"></div> |
9 <script> | 9 <script> |
10 description('If we drag files onto an editable area, then the filenames should b
e inserted into the editable area.'); | 10 description('If we drag files onto an editable area, then the filenames should b
e inserted into the editable area.'); |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 function dragFilesOntoEditable(files) | 27 function dragFilesOntoEditable(files) |
28 { | 28 { |
29 eventSender.beginDragWithFiles(files); | 29 eventSender.beginDragWithFiles(files); |
30 moveMouseToCenterOfElement(editable); | 30 moveMouseToCenterOfElement(editable); |
31 eventSender.mouseUp(); | 31 eventSender.mouseUp(); |
32 } | 32 } |
33 | 33 |
34 var successfullyParsed = true; | 34 var successfullyParsed = true; |
35 </script> | 35 </script> |
36 <script src="../../fast/js/resources/js-test-post.js"></script> | |
37 </body> | 36 </body> |
38 </html> | 37 </html> |
OLD | NEW |