summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/multicol-fill-balance-023.html
blob: fbada1b6d800ca1b5e56459923d25cf5b35ae3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/#cf">
<div id="multicol" style="columns:4;">
  <div style="height:0;">
    <div style="height:20px;"></div>
    <div style="break-before:column; height:10px;"></div>
    <div style="break-before:column; height:10px;"></div>
    <div style="column-span:all; height:10px;"></div>
  </div>
  <div style="height:320px;"></div>
</div>

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(()=> {
    assert_equals(multicol.offsetHeight, 100);
  }, "Spanner in overflowed parent with forced breaks");
</script>