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

18 lines
269 B
HTML
Raw Normal View History

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