summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/423098.html
blob: cdaf8ddb2286735aeb304e0f33f1f4b3112f05ee (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 type="text/javascript">

function boom()
{
  document.getElementById("b").style.position = "static";
  document.body.offsetHeight;
  document.getElementById("a").style.fontSize = "110%";
}

</script>
</head>

<body style="column-count: 1;" onload="boom();">
  <div id="a" style="float: right; height: 80px;">
    <div id="b" style="position: absolute; height: 10px;"></div>
    <div style="height: 100px; width: 11px;"></div>
  </div>
</body>

</html>