summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/multicol-fill-balance-028.html
blob: f66c99869b332c2ede7e3f0921f5ab2ccd325ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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:2;">
  <span>
    <div style="float:left; width:100%; height:60px;"></div>
    <div style="clear:left; float:left; width:100%; contain:size; height:40px;"></div>
    <div style="clear:left; float:left; width:100%; height:90px;"></div>
  </span>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(()=> {
    assert_equals(multicol.offsetHeight, 100);
  }, "Make room for the float in the first column");
</script>