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

18 lines
269 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
function boom()
{
var weirdScript = document.createElementNS('http://example.com/foo', 'script');
document.body.appendChild(weirdScript);
document.body.innerHTML;
}
</script>
</head>
<body onload="boom()">
</body>
</html>