| OLD | NEW |
| 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 <script src="resources/shared.js"></script> | 4 <script src="resources/shared.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <input type="file" id="fileInput" multiple></input> | 7 <input type="file" id="fileInput" multiple></input> |
| 8 <script> | 8 <script> |
| 9 | 9 |
| 10 description("Confirm Blob/File/FileList limitations of WebKit's IndexedDB implem
entation."); | 10 description("Confirm Blob/File/FileList limitations of WebKit's IndexedDB implem
entation."); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 } | 75 } |
| 76 | 76 |
| 77 if (window.eventSender) { | 77 if (window.eventSender) { |
| 78 indexedDBTest(prepareDatabase, testBlob); | 78 indexedDBTest(prepareDatabase, testBlob); |
| 79 } else { | 79 } else { |
| 80 alert("Select file(s) using the input control above to initiate the test"); | 80 alert("Select file(s) using the input control above to initiate the test"); |
| 81 document.getElementById("fileInput").onchange = function() { indexedDBTest(p
repareDatabase, testBlob); }; | 81 document.getElementById("fileInput").onchange = function() { indexedDBTest(p
repareDatabase, testBlob); }; |
| 82 } | 82 } |
| 83 | 83 |
| 84 </script> | 84 </script> |
| 85 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 86 </body> | 85 </body> |
| 87 </html> | 86 </html> |
| OLD | NEW |