tenfourfox/dom/html/crashtests/673853.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
490 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var otherDoc = document.implementation.createDocument('', '', null);
var input = otherDoc.createElementNS("http://www.w3.org/1999/xhtml", "input");
var form = otherDoc.createElementNS("http://www.w3.org/1999/xhtml", "form");
input.setAttributeNS(null, "form", "x");
form.setAttributeNS(null, "id", "x");
input.appendChild(form);
otherDoc.appendChild(input);
}
</script>
</head>
<body onload="boom();"></body>
</html>