summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/366200-1.xhtml
blob: 7845f0bdf42e1e5632dadde7b717c8acc39ccddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<script type="text/javascript">

<![CDATA[

function boom()
{
  var dE = document.documentElement;
  var newSpan = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
  
  document.addEventListener("DOMNodeRemoved", whee, false);
  document.removeChild(dE);
  document.removeEventListener("DOMNodeRemoved", whee, false);
  
  function whee()
  {
    document.removeEventListener("DOMNodeRemoved", whee, false);
    document.insertBefore(newSpan, dE);
  }
}

window.addEventListener("load", boom, false);

]]>

</script>
</head>

<body>
<p>This text will disappear.  There should be no assertions.</p>
</body>
</html>