Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/table/balance-table-with-fractional-height-row.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<div id="multicol" style="columns:2; line-height:100px;">
<div style="display:table-row; height:4.9999px;"></div>
<div style="display:table-row;">
<br>
</div>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(()=> {
assert_equals(multicol.getBoundingClientRect().height, 100);
}, "If we have room for the line, we have room for all we need");
</script>