summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/849603.html
blob: 520aa8c1fae1e12fbed4f37cfce8318bb02e6125 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<style>

    .container {
      height: 24pt;
      position: relative;
    }
    #colset {
      height: 2in;
      column-count: 3;
    }
    .c1 {
      position: absolute;
      height: 3in;
    }
    .c2 {
      position: absolute;
      height: 1in;
    }
    .c3 {
      position: absolute;
      height: 3in;
    }
    .f1 {
      margin-bottom: 96pt;
    }

</style>
</head>
<body>

  <div id="colset">
    <div class="container"></div>
    <div class="container"></div>
    <p class="following f1"></p>
    <div class="container">
      <div class="overflow c1"></div>
      <div class="overflow c2"></div>
      <div class="overflow c3"></div>
      The quick brown fox jumps over the lazy dog.
    </div>
  </div>

</body>
</html>