monolithic-overflow-006.html (980B)
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=1425077"> 4 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 5 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 6 <!-- Check that monolithic overflow in one table cell doesn't mess up percentage resolution in the other cell. --> 7 <div style="columns:2; column-fill:auto; gap:0; width:100px; height:100px; background:red;"> 8 <div style="display:table; width:100%; height:200px;"> 9 <div style="display:table-cell; width:50%;"> 10 <div style="height:100%; background:green;"></div> 11 </div> 12 <div style="display:table-cell; width:50%;"> 13 <div style="contain:size; height:130px;"> 14 <div style="height:100px; background:green;"></div> 15 </div> 16 <div style="height:100px; background:green;"></div> 17 </div> 18 </div> 19 </div>