wpt / css / css-grid / grid-lanes / item-placement / dense-packing / column-dense-packing-multi-span-004.html

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

/css/css-grid/grid-lanes/item-placement/dense-packing/column-dense-packing-multi-span-004.html

<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="column-dense-packing-multi-span-004-ref.html">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.grid-lanes {
    display: grid-lanes;
    flow-tolerance: 0;
    grid-template-columns: repeat(5, 50px);
    grid-auto-flow: dense;
    grid-lanes-pack: dense;
}
</style>
<body>
  <p>Ensure that dense-packing with multi-span items follows the grid-lanes dense packing algorithm.</p>
  <div class="grid-lanes">
    <div style="background: brown; height: 80px;"></div>
    <div style="background: brown; height: 60px;"></div>
    <div style="background: brown; height: 40px;"></div>
    <div style="background: brown; height: 30px;"></div>
    <div style="background: brown; height: 20px;"></div>
    <div style="background: brown; height: 20px; grid-column: span 5;"></div>
    <div style="background: pink; height: 30px; grid-column: span 4;">Item that should not end up in gap.</div>
    <div style="background: yellow; height: 20px; grid-column: span 4;">Item that should end up in gap.</div>
  </div>
</body>
</html>

/css/css-grid/grid-lanes/item-placement/dense-packing/column-dense-packing-multi-span-004-ref.html

<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-template-columns: repeat(5, 50px);
    grid-auto-flow: dense;
}
</style>
<body>
  <p>Ensure that dense-packing with multi-span items follows the grid-lanes dense packing algorithm.</p>
  <div class="grid">
    <div style="background: brown; height: 80px;"></div>
    <div style="background: brown; height: 60px;"></div>
    <div style="background: brown; height: 40px;"></div>
    <div style="background: brown; height: 30px;"></div>
    <div style="background: brown; height: 20px;"></div>
    <div style="background: brown; height: 20px; grid-column: span 5;"></div>
    <div style="background: pink; height: 30px; grid-column: span 4;">Item that should not end up in gap.</div>
    <div style="background: yellow; height: 20px; grid-column: span 4; transform: translate(50px, -70px);">Item that should end up in gap.</div>
  </div>
</body>
</html>