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

Side by Side Diff: LayoutTests/fast/forms/file/recover-file-input-in-unposted-form.html

Issue 58533003: Move fast/js/resources files to resources. (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="../../js/resources/js-test-pre.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 </head> 4 </head>
5 <body onload="test()"> 5 <body onload="test()">
6 <form id="form" method="post" enctype="multipart/form-data"> 6 <form id="form" method="post" enctype="multipart/form-data">
7 <input id="text-input" type="text" name="posted-text"> 7 <input id="text-input" type="text" name="posted-text">
8 <input id="file-input" type="file" name="posted-file"> 8 <input id="file-input" type="file" name="posted-file">
9 <input id="multiple-file-input" type="file" multiple="multiple" name="posted-fil es"> 9 <input id="multiple-file-input" type="file" multiple="multiple" name="posted-fil es">
10 </form> 10 </form>
11 <div id="manual-instructions"> 11 <div id="manual-instructions">
12 To run this test manually: 12 To run this test manually:
13 <ul> 13 <ul>
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 } 92 }
93 93
94 function dragFilesOntoInput(input, files) { 94 function dragFilesOntoInput(input, files) {
95 eventSender.beginDragWithFiles(files); 95 eventSender.beginDragWithFiles(files);
96 moveMouseToCenterOfElement(input); 96 moveMouseToCenterOfElement(input);
97 eventSender.mouseUp(); 97 eventSender.mouseUp();
98 } 98 }
99 </script> 99 </script>
100 </body> 100 </body>
101 </html> 101 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698