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-022.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="outer" style="columns:2;">
<div id="inner" style="columns:2; border-top:solid 3px;">
<div style="height:97px; contain:size;"></div>
</div>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(()=> {
assert_equals(outer.offsetHeight, 100);
}, "Nested balancing outer height");
test(()=> {
assert_equals(inner.offsetHeight, 100);
}, "Nested balancing inner height");
</script>