Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / files / read-blob-async.html
blob1be596177fa3fa655f3ecd631a0c0f0d7d17d455
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <input type="file" name="file" id="file" onchange="onInputFileChange(testFileInfoList)" multiple>
5 <pre id='console'></pre>
7 <script src="resources/setup-for-read-common.js"></script>
8 <script src="resources/read-common.js"></script>
9 <script src="resources/read-blob-test-cases.js"></script>
10 <script>
11 var testFileInfoList = [
12 { 'name': 'non-existent', 'path': 'resources/non-existent' },
13 { 'name': 'empty-file', 'path': 'resources/empty-file' },
14 { 'name': 'file1', 'path': 'resources/UTF8.txt' },
15 { 'name': 'file2', 'path': 'resources/UTF8-2.txt' },
16 { 'name': 'file3', 'path': 'resources/UTF8-3.txt' },
19 function isReadAsAsync()
21 return true;
24 function startTest(testFiles)
26 runNextTest(testFiles);
29 if (window.eventSender) {
30 testRunner.dumpAsText();
31 testRunner.waitUntilDone();
32 window.onload = function() { runTests(testFileInfoList); }
34 </script>
35 </body>
36 </html>