summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/463741-1.html
blob: 9a7931cf3230648368f5d227107d865684c048e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html style="width: 1px;">
<head>
<script type="text/javascript">

function boom()
{
  document.documentElement.appendChild(document.body);
  document.documentElement.offsetHeight;
  var v = document.getElementById("v");
  v.remove();
  var w = document.createElement("span");
  document.body.insertBefore(w, document.body.lastChild);
}

</script>
</head>

<body onload="boom();"><div></div><div style="height: 1px;"><span><div id="v"></div></span><div style="column-count: 2;">A<div style="margin: 67108863ch 0pt;">B</div><div>C</div></div></div><span></span></body>
</html>