OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <input type="file" name="files" id="files"> | 4 <input type="file" name="files" id="files"> |
5 <pre id="console"></pre> | 5 <pre id="console"></pre> |
6 <script src="../../js/resources/js-test-pre.js"></script> | 6 <script src="../../js/resources/js-test-pre.js"></script> |
7 <script> | 7 <script> |
8 description('Tests the webkitEntries attribute of <input type="file">'); | 8 description('Tests the webkitEntries attribute of <input type="file">'); |
9 | 9 |
10 var testCases = [ | 10 var testCases = [ |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 return components[components.length - 1]; | 124 return components[components.length - 1]; |
125 } | 125 } |
126 | 126 |
127 function onError(error) | 127 function onError(error) |
128 { | 128 { |
129 testFailed('Test finished with unexpected error: ' + error.code); | 129 testFailed('Test finished with unexpected error: ' + error.code); |
130 finishJSTest(); | 130 finishJSTest(); |
131 } | 131 } |
132 | 132 |
133 </script> | 133 </script> |
134 <script src="../../js/resources/js-test-post.js"></script> | |
135 </body> | 134 </body> |
136 </html> | 135 </html> |
OLD | NEW |