summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/404219-1.html
blob: 6dcb2707a4c5e007390a6fe5d9d0d901aafb05b7 (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
<html>
<head>
<style>
  body {
    /* Standize line-height, because the default varies by platform */
    line-height: 50px;
  }
  div#a {
    width: 3em;
    column-count: 2;
    column-gap: 0px;
    background: lightgreen;
  }
  div#b {
    float: left;
    background: lightblue;
  }
  div#c {
    height: 100px;
    background: orange;
  }
</style>
</head>
<body>
  <div id="a">
    <div id="b"><br/><br/>b</div>
    <div id="c">c c c</div>
  </div>
</body>
</html>