tenfourfox/dom/html/crashtests/613027.html

22 lines
432 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var a = document.createElementNS("http://www.w3.org/1999/xhtml", "fieldset");
var b = document.createElementNS("http://www.w3.org/1999/xhtml", "legend");
var c = document.createElementNS("http://www.w3.org/1999/xhtml", "input");
a.appendChild(b);
a.appendChild(c);
a.removeChild(b);
c.expandoQ = a;
}
</script>
</head>
<body onload="boom();"></body>
</html>