summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/390976-1.html
blob: 4f0f578e21df58d6c9109a018d21dd22c3cee53b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>

<head>
<script>
function boom()
{
  var aaa = document.getElementById("aaa");
  var bbb = document.getElementById("bbb");
  aaa.parentNode.insertBefore(bbb, aaa);
}
</script>
</head>

<body onload="boom();">

<div><span><span style="display: table-caption;"></span><span id="aaa"><div></div></span></span></div>

<b id="bbb" style="display: table-caption;"></b>

</body>

</html>