single-line-column-flex-fragmentation-044.html (1048B)
1 <!DOCTYPE html> 2 <title> 3 Tests that flex-items get pushed down due to a previous multicol flex-item 4 expanding as a result of fragmentation w/ vertical writing-mode. 5 </title> 6 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 7 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 8 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 9 <div style="writing-mode: vertical-lr;"> 10 <div style="inline-size: 100px; block-size: 100px; columns: 2; column-gap: 0; column-fill: auto; background: red;"> 11 <div style="display: flex; flex-direction: column;"> 12 <div style="inline-size: 50px; columns: 2; column-gap: 0; column-fill: auto; background: green;"> 13 <div style="inline-size: 50px; block-size: 160px;"></div> 14 <div style="column-span: all; block-size: 30px; break-inside: avoid;"></div> 15 </div> 16 <div style="background: green; block-size: 50px;"></div> 17 <div style="background: green; block-size: 20px;"></div> 18 </div> 19 </div> 20 </div>