single-line-row-flex-fragmentation-030.html (847B)
1 <!DOCTYPE html> 2 <title> 3 Single-line row flex fragmentation: If the fragmentainer is out of space 4 but a flex row should break before if it has content w/ vertical 5 writing-mode. 6 </title> 7 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination"> 8 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 9 <style> 10 #flex { 11 display: flex; 12 } 13 </style> 14 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 15 <div style="writing-mode: vertical-lr;"> 16 <div style="inline-size: 100px; block-size: 100px; columns: 2; column-gap: 0; column-fill: auto; background: red;"> 17 <div style="block-size: 100px; inline-size: 100px; background: green;"></div> 18 <div id="flex"> 19 <div style="block-size: 100px; inline-size: 100px; background: green;"></div> 20 </div> 21 </div> 22 </div>