Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / parser / script-tests / double-write-from-closed-iframe.js
blobe72fe37948905dc241ca55edb76cbac6f2497f3b
1 if (window.testRunner)
2 testRunner.dumpChildFramesAsText();
4 var iframe = document.createElement('iframe');
5 document.body.appendChild(iframe);
7 iframe.contentDocument.write('<script>top.testPassed("script ran")</script>');
8 iframe.contentDocument.write('PASS');
9 iframe.contentDocument.close();