Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / files / workers / resources / worker-read-blob-async-crash-iframe.html
blob507cfa33e7a09b51ec406373f73e6f99f6d9e773
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script>
5 var worker = new Worker('worker-read-blob-async-crash.js');
6 worker.addEventListener('message', function(e) {
7 location.href = 'about:blank';
8 }, false);
9 worker.postMessage({});
10 </script>
11 </body>
12 </html>