summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/355426-1.html
blob: 87abaae0889485905e32b7e5fc533c1020490d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<html>
<head>

<script>

function foo()
{
  document.getElementById("navish").style.display = "inline-block";
}
</script>

</head>


<body onload="foo()">

<div style="column-count: 2;">
  <ol id="ol1" style="height: 30px;">
    <li>A</li>
    <li><p id="p3" style="width: 1em;">Foo Foo Foo Foo Foo Foo Foo Foo Foo Foo Foo</p></li>
  </ol>
</div>

<p id="navish">E</p>		

</body>
</html>