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

Status: FAIL | Duration: 18ms | 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-auto-025.html

<!DOCTYPE html>
<html>
<title>Auto repeat tracks with fixed size and replaced items</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-025-ref.html">
<style>
.grid-lanes {
    display: grid-lanes;
    flow-tolerance: 0;
    grid-template-columns: repeat(auto-fill, auto);
    width: 400px;
    gap: 10px;
}

img {
  width: stretch;
  max-width: 100px;
  height: auto;
  display: block;
}
</style>
<div class="grid-lanes">
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
</div>
</html>

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

<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-template-columns: auto auto auto;
    width: 400px;
    gap: 10px;
}

img {
  width: stretch;
  max-width: 100px;
  height: auto;
  display: block;
}
</style>
<div class="grid">
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
  <img src="../../../resources/pink-image.png" width="113" height="120"></img>
</div>
</html>