overflow-clip-008.html (807B)
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-break-3/#fragmentation-model"> 4 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#overflow-properties"> 5 <meta name="assert" content="Clipping only in the inline direction shouldn't affect fragmentation"> 6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 8 <div style="columns:4; width:100px; column-gap:0; column-fill:auto; height:100px; background:red;"> 9 <div style="overflow-x:clip; height:200px;"> 10 <div style="width:100px; background:red;"> 11 <div style="width:25px; height:400px; background:green;"></div> 12 </div> 13 </div> 14 </div>