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

Side by Side Diff: LayoutTests/fast/forms/file/file-input-change-event.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <input type="file" id="singleFile" name="upfile" onchange="singleFileSelected()" /> 7 <input type="file" id="singleFile" name="upfile" onchange="singleFileSelected()" />
8 <input type="file" id="multipleFiles" name="upfile[]" multiple="multiple" onchan ge="multipleFilesSelected()" /> 8 <input type="file" id="multipleFiles" name="upfile[]" multiple="multiple" onchan ge="multipleFilesSelected()" />
9 <div id="console"></div> 9 <div id="console"></div>
10 <script> 10 <script>
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 eventSender.mouseUp(); 106 eventSender.mouseUp();
107 } 107 }
108 108
109 function dragFilesOntoButtonInsideFileInput(input, files) { 109 function dragFilesOntoButtonInsideFileInput(input, files) {
110 changeDispatched = false; 110 changeDispatched = false;
111 eventSender.beginDragWithFiles(files); 111 eventSender.beginDragWithFiles(files);
112 eventSender.mouseMoveTo(input.offsetLeft + 10, input.offsetTop + input.offse tHeight / 2); 112 eventSender.mouseMoveTo(input.offsetLeft + 10, input.offsetTop + input.offse tHeight / 2);
113 eventSender.mouseUp(); 113 eventSender.mouseUp();
114 } 114 }
115 </script> 115 </script>
116 <script src="../../js/resources/js-test-post.js"></script>
117 </body> 116 </body>
118 </html> 117 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/file/file-input-capture.html ('k') | LayoutTests/fast/forms/file/file-setrangetext.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698