Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/webappapis/dynamic-markup-insertion/document-write/script_003.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>document.write script writing a further script</title>
<script src="/resources/testharness.js"></script><script src="/resources/testharnessreport.js"></script>
<script>
var t = async_test();
t.step(function() {
document.write("<script>document.write('<script>t.done()</script'+'>')<"+"/script>");
});
</script>
<div id="log"></div>