chromium/third_party/blink/web_tests/fast/parser/script-tests/double-write-from-closed-iframe.js

if (window.testRunner)
    testRunner.dumpChildFrames();

var iframe = document.createElement('iframe');
document.body.appendChild(iframe);

iframe.contentDocument.write('<script>top.testPassed("script ran")</script>');
iframe.contentDocument.write('PASS');
iframe.contentDocument.close();