multicol-fill-balance-019.html (546B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://www.w3.org/TR/css-multicol-1/#cf"> 4 <div id="mc" style="columns:2; column-gap:0; width:100px; orphans:1; widows:1; line-height:20px;"> 5 <span> 6 <div style="height:200px;"></div> 7 </span> 8 </div> 9 <script src="/resources/testharness.js"></script> 10 <script src="/resources/testharnessreport.js"></script> 11 <script> 12 test(()=> { 13 assert_equals(mc.offsetHeight, 100); 14 }, "Breakable block inside inline"); 15 </script>