Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: LayoutTests/editing/pasteboard/drag-files-to-editable-element.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698