summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/399412-1.html
blob: 1b3bb889a2a88683511a04ec37faa1473ecadf1f (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
28
29
30
31
32
<html>
<head>

<style id="s">
.container {
  height: 30px;
}
</style>

<style>
.overflow {
  height: 150px;
  border: 1px silver solid;
}
body {
  height: 60px;
  width: 300px;
  column-width: 50px;
  column-gap: 1px;
  column-fill: auto;
}
</style>

</head>

<body onload="s=document.getElementById('s'); s.parentNode.removeChild(s);">

<div class="container"><div class="overflow"></div></div>
<div class="container"><div class="overflow"></div></div>

</body>
</html>