wpt / css / css-grid / grid-lanes / track-sizing / auto-repeat / intrinsic-auto-repeat / row-auto-repeat-auto-026.html

Status: PASS | Duration: 6ms | Subtests: 1/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/row-auto-repeat-auto-026.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="row-auto-repeat-auto-026-ref.html">
<style>
.grid-lanes {
    display: grid-lanes;
    flow-tolerance: 0;
    grid-template-rows: repeat(auto-fill, auto);
    height: 400px;
    gap: 10px;
}
</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/row-auto-repeat-auto-026-ref.html

<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: auto auto auto;
    height: 400px;
    width: 150px;
    gap: 10px;
}
</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>