Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / files / apply-blob-url-to-xhr.html
bloba00418f031c5dcd7e8ecc7863f1a934b5cf96d96
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <input type="file" name="file" id="file" onchange="onInputFileChange()">
5 <pre id='console'></pre>
7 <script src="resources/apply-blob-url-to-xhr.js"></script>
8 <script>
9 function onInputFileChange()
11 var file = document.getElementById("file").files[0];
13 runXHRs(file);
16 function runTests()
18 eventSender.beginDragWithFiles(['resources/UTF8.txt']);
19 eventSender.mouseMoveTo(10, 10);
20 eventSender.mouseUp();
23 if (window.eventSender) {
24 testRunner.dumpAsText();
25 testRunner.waitUntilDone();
26 window.onload = runTests;
28 </script>
29 </body>
30 </html>