summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/345837-1.xhtml
blob: 017bac1e964d40124ca323802818c6e7d1148f7f (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
35
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">

<head>
<script>
<![CDATA[

function foo()
{
  var r = document.createRange(); 
  r.setStart(document.getElementById("a"), 0); 
  r.setEnd(document.getElementById("b"), 0); 
  window.getSelection().addRange(r);

  var everything = document.getElementById("everything");
  everything.parentNode.removeChild(everything);
  
  document.documentElement.removeAttribute("class");
}

]]>
</script>
</head>

<body onload="setTimeout(foo, 30);">

<div id="everything">

<div id="a">
  <span id="b" />
</div>

</div>

</body>
</html>