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

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

/css/css-grid/grid-lanes/tentative/item-placement/column-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="column-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: column track-reverse;
  grid-template-columns: 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; height: 80px;"></div>
  <div style="background: brown; height: 20px; grid-column: span 2"></div>
  <div style="background: brown; height: 40px;"></div>
  <div style="background: brown; height: 100px;"></div>
  <div style="background: brown; height: 10px; grid-column: span 5;"></div>
  <div style="background: pink; height: 10px; grid-column: span 4;"></div>
  <div style="background: lightgreen; height: 10px; grid-column: span 2;"></div>
</div>
</body>
</html>

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

<!DOCTYPE html>
<html>
<style>
.grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 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; height: 80px; grid-column: 5;"></div>
  <div style="background: brown; height: 20px; grid-column: 3 / span 2"></div>
  <div style="background: brown; height: 40px; grid-column: 2;"></div>
  <div style="background: brown; height: 100px; grid-column: 1;"></div>
  <div style="background: brown; height: 10px; grid-column: span 5;"></div>
  <div style="background: pink; height: 10px; grid-column: 2 / span 4; transform: translateY(-30px);"></div>
  <div style="background: lightgreen; height: 10px; grid-column: 2 / span 2; transform: translate(50px, -100px);"></div>
</div>
</body>
</html>