OLD | NEW |
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 Loading... |
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> |
OLD | NEW |