Mypal/dom/base/crashtests/483818-1.html

15 lines
298 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function appendScript(doc) {
var s = doc.createElement("script");
s.textContent = "document.write('executed'); document.close()";
doc.body.appendChild(s);
}
</script>
</head>
<body onload="appendScript(window.document)">
</body>
</html>