summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/423264-1.html
blob: 9a64867950976a55a9cf98f67f634533ff44d3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">

function boom()
{
  var y = document.createTextNode(' Y ');
  document.getElementById("a").appendChild(y);
  document.body.offsetHeight;
  var z = document.createTextNode('Z');
  document.body.insertBefore(z, document.body.lastChild);
}

</script>
</head>

<body onload="boom();"><div style="column-count: 2; width: 1px;"><div id="a">M N矋<span>م</span></div></div>H</body>
</html>