wpt / css / css-grid / grid-lanes / tentative / item-placement / row-reverse-dense-packing-multi-span-005.html

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

/css/css-grid/grid-lanes/tentative/item-placement/row-reverse-dense-packing-multi-span-005.html

<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="row-reverse-dense-packing-multi-span-005-ref.html">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.grid-lanes {
  display: grid-lanes;
  flow-tolerance: 0;
  grid-auto-flow: dense;
  grid-lanes-pack: dense;
  grid-lanes-direction: row track-reverse;
  grid-template-rows: repeat(5, 50px);
}
</style>
<body>
<p>Ensure that dense-packing in grid-lanes properly handles "split" track openings.</p>
<div class="grid-lanes">
  <div style="background: brown; width: 80px;"></div>
  <div style="background: brown; width: 20px; grid-row: span 2"></div>
  <div style="background: brown; width: 40px;"></div>
  <div style="background: brown; width: 100px;"></div>
  <div style="background: brown; width: 10px; grid-row: span 5;"></div>
  <div style="background: pink; width: 10px; grid-row: span 4;"></div>
  <div style="background: lightgreen; width: 10px; grid-row: span 2;"></div>
</div>
</body>
</html>

/css/css-grid/grid-lanes/tentative/item-placement/row-reverse-dense-packing-multi-span-005-ref.html

<!DOCTYPE html>
<html>
<style>
.grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-columns: min-content;
  grid-template-rows: repeat(5, 50px);
}
</style>
<body>
<p>Ensure that dense-packing in grid-lanes properly handles "split" track openings.</p>
<div class="grid">
  <div style="background: brown; width: 80px; grid-row: 5;"></div>
  <div style="background: brown; width: 20px; grid-row: 3 / span 2"></div>
  <div style="background: brown; width: 40px; grid-row: 2;"></div>
  <div style="background: brown; width: 100px; grid-row: 1;"></div>
  <div style="background: brown; width: 10px; grid-row: 1 / span 5;"></div>
  <div style="background: pink; width: 10px; grid-row: 2 / span 4; transform: translateX(-30px);"></div>
  <div style="background: lightgreen; width: 10px; grid-row: 3 / span 2; transform: translateX(-100px);"></div>
</div>
</body>
</html>