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

15 lines
298 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>