Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/multicol-fill-balance-028.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<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>