Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / files / workers / worker-read-blob-async-crash.html
blobfef912ad62187dc148283d2a85897b5b0995ad7f
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p>Test for crash bug in WorkerThreadableLoader::MainThreadBridge::mainThreadCreateLoader when FileReader is runing in the worker thread and the page location is changed.</p>
5 <p>This test PASSED if it did not crash.</p>
6 <script src="../../../resources/js-test.js"></script>
7 <script>
8 var frame = document.createElement('iframe');
9 document.body.appendChild(frame);
10 frame.onload = function() {
11 frame.onload = function() {
12 finishJSTest();
13 return true;
15 return true;
17 frame.src = 'resources/worker-read-blob-async-crash-iframe.html';
18 jsTestIsAsync = true;
19 </script>
20 </body>
21 </html>