summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/613027.html
blob: a866860f106075381c26e4fe19b0947bffc58aec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>