1 2 3 4 5 6 7 8 9 10 11
<!DOCTYPE html> <script> function runTest() { var iframe = document.getElementsByTagName("iframe")[0]; var doc = iframe.contentDocument; doc.write("\u003cscript>document.close();\u003c/script>foo"); } </script> <body onload="runTest();"> <iframe></iframe>