wpt / css / css-flexbox / balance / balance-min-line-count-004.html

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-004.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-004-ref.html">
<meta name="assert" content="Tests balancing with a minimum number of lines.">
<style>
#flex {
  display: flex;
  flex-wrap: balance;
  flex-line-count: 5;
  gap: 20px;
}
div > div {
  background: green;
  width: 20px;
  height: 20px;
}
</style>
<p>There should be a minimum of 5 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-004-ref.html

<!DOCTYPE html>
<style>
#flex {
  display: flex;
  width: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
div > div {
  background: green;
  width: 20px;
  height: 20px;
}
</style>
<p>There should be a minimum of 5 lines.</p>
<div id="flex">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>