variable-fragmentainer-size-003-crash.html (1210B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1378294"> 4 <!-- All fragmentainers but the first just have room for the repeated headers 5 and footers, and no room for regular, unrepeated, stuff. We should still 6 fit 1px of unrepeated content in every fragmentainer, because that should 7 be a sensible way of interpretating 8 https://www.w3.org/TR/css-break-3/#breaking-rules ("fragmentainers are 9 assumed to have a minimum block size of 1px"). --> 10 <div style="margin:100px; columns:4; column-fill:auto; height:40px; background:yellow;"> 11 <div style="margin-bottom:-60px;"></div> 12 <div style="columns:1; column-fill:auto; background:lime;"> 13 <div style="display:table;"> 14 <div style="display:table-header-group; break-inside:avoid;"> 15 <div style="width:20px; height:20px; background:blue;"></div> 16 </div> 17 <div style="display:table-footer-group; break-inside:avoid;"> 18 <div style="width:20px; height:20px; background:hotpink;"></div> 19 </div> 20 <div style="height:100px; background:black;"></div> 21 </div> 22 </div> 23 </div>