summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/column-balancing-with-oofs-crash.html
blob: a74e651dc2805af2ecfc074b0a589fc3ee2ef3bc (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
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1362550">
<style>
  .multicol {
    column-count: 2;
    width: 200px;
  }
  .relpos {
    position: relative;
  }
  .abspos {
    height: 25%;
    position: absolute;
  }
</style>
<div class="multicol">
  <div class="relpos">
    <div class="abspos">
      <p>
        text
      </p>
    </div>
  </div>
  <figure class="relpos">
    <div class="abspos">
      <p>
        text
      </p>
    </div>
  </figure>
</div>