Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-flexbox/balance/balance-min-line-count-003.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-flexbox-2/#flex-line-count-property"> <link rel="match" href="balance-min-line-count-003-ref.html"> <meta name="assert" content="Tests balancing with a minimum number of lines."> <style> #flex { display: flex; flex-wrap: balance; flex-line-count: 4; gap: 20px; } div > div { background: green; width: 20px; height: 20px; } </style> <p>There should be a minimum of 4 lines.</p> <div id="flex"> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div>
/css/css-flexbox/balance/balance-min-line-count-003-ref.html
<!DOCTYPE html> <style> #flex { display: flex; width: 100px; flex-wrap: wrap; gap: 20px; } div > div { background: green; width: 20px; height: 20px; } </style> <p>There should be a minimum of 4 lines.</p> <div id="flex"> <div></div> <div></div> <div></div> <div></div> <div></div> <div style="background: none;"></div> <div></div> <div></div> <div style="background: none;"></div> <div></div> <div></div> </div>