wpt / css / css-grid / grid-lanes / track-sizing / auto-repeat / intrinsic-auto-repeat / column-auto-repeat-minmax-005.html

Status: FAIL | Duration: 14ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-grid/grid-lanes/track-sizing/auto-repeat/intrinsic-auto-repeat/column-auto-repeat-minmax-005.html

<!DOCTYPE html>
<title>Auto repeat tracks with multiple tracks and gutters.</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="column-auto-repeat-auto-011-ref.html">
<style>
.grid-lanes {
  display: grid-lanes;
  border: solid thick;
  margin: 10px;
  grid-template-columns: repeat(auto-fill, minmax(auto, auto) minmax(auto, auto));
  grid-column-gap: 100px;
  width: 300px;
  background: pink;
}
.grid-lanes > div {
  background: lime;
  width: 50px;
  height: 50px;
}
</style>
<p>The test passes if it has the same visual effect as reference.</p>
<div class="grid-lanes">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>

/css/css-grid/grid-lanes/track-sizing/auto-repeat/intrinsic-auto-repeat/column-auto-repeat-auto-011-ref.html

<!DOCTYPE html>
<style>
.grid {
  display: grid;
  border: solid thick;
  margin: 10px;
  grid-template-columns: repeat(auto-fill, 100px 100px);
  grid-column-gap: 100px;
  width: 300px;
  background: pink;
}
.grid > div {
  background: lime;
  width: 50px;
  height: 50px;
}
</style>
<p>The test passes if it has the same visual effect as reference.</p>
<div class="grid">
  <div></div>
  <div></div>
  <div></div>
  <div></div>
</div>