summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/343540-1.html
blob: 43291c6d28917e94cf7ee5f2bc4233f022856105 (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
<html>
<head>

<script>

function boo()
{
  var div = document.getElementById("div"); 
  var dd = document.getElementById("dd"); 
  var newSpan = document.createElement('span'); 
  dd.insertBefore(newSpan, div);
}

window.addEventListener("load", boo);
</script>

</head>


<body>

<dd id="dd"><div id="div"></div></dd>

</body>

</html>