Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / files / resources / file-reader-real.html
blob9f850ed6423463bb62de5270fbdc84a593fc45fc
1 <html>
2 <head>
3 <script>
4 function runTest()
6 var blob = new Blob(["0123456789"]);
7 var reader = new FileReader();
8 reader.onload = function(event) {
9 console.log("Received data: " + event.target.result);
11 reader.onloadend = function() {
12 if (window.testRunner)
13 testRunner.notifyDone();
15 reader.onerror = function(event) {
16 console.log("Received error event: " + event.target.error.code);
18 reader.readAsText(blob);
21 </script>
22 </head>
23 <body onload="runTest()">
24 </body>
25 </html>