multicol-span-all-016.html (627B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Multi-column Layout Test: Height of container with a column spanner descendant.</title> 4 <link rel="help" href="https://www.w3.org/TR/css-multicol-1/#spanning-columns"> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/resources/check-layout-th.js"></script> 8 9 <div id="multicol" style="columns:2;"> 10 <div id="container" style="height:100px; width:0px;" data-expected-bounding-client-rect-height="50"> 11 <div style="column-span:all;"></div> 12 </div> 13 </div> 14 15 <script> 16 checkLayout('#container'); 17 </script>