summaryrefslogtreecommitdiffstats
path: root/layout/xul/crashtests/470272.html
blob: 5caf12d636cb15ea07f1030053f4d911989f7cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script>
function doe2(i) {
document.documentElement.offsetHeight;
document.getElementById('a').setAttribute('style', 'display: -moz-inline-box;');
document.documentElement.offsetHeight;
}
</script>
</head>
<body style="float: right; column-count: 2; height: 20%;" onload="setTimeout(doe2,0);">
  <div style="display: none;"></div>
  <ul style="display: -moz-inline-box;"></ul>
  <span id="a">
    <ul style="display: -moz-box; overflow: scroll;"></ul>
      <span style="display: -moz-inline-box; height: 10px;">
        <span style="position: absolute;"></span>
      </span>
  </span>
</body>
</html>