variable-fragmentainer-size-006-crash.html (1156B)
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 <!-- Only the first fragmentainer actually has room for repeated headers and 5 footers. We should still fit 1px of unrepeated content in every 6 fragmentainer, because that should be a sensible way of interpretating 7 https://www.w3.org/TR/css-break-3/#breaking-rules ("fragmentainers are 8 assumed to have a minimum block size of 1px"). --> 9 <div style="margin:100px; columns:4; column-fill:auto; height:10px; background:yellow;"> 10 <div style="margin-bottom:-60px;"></div> 11 <div style="columns:1; column-fill:auto; background:lime;"> 12 <div style="display:table;"> 13 <div style="display:table-header-group; break-inside:avoid;"> 14 <div style="width:20px; height:20px; background:blue;"></div> 15 </div> 16 <div style="display:table-footer-group; break-inside:avoid;"> 17 <div style="width:20px; height:20px; background:hotpink;"></div> 18 </div> 19 <div style="height:100px; background:black;"></div> 20 </div> 21 </div> 22 </div>