wpt / css / css-grid / grid-lanes / alignment / column-dense-packing-align-items-multi-span-002.html

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

/css/css-grid/grid-lanes/alignment/column-dense-packing-align-items-multi-span-002.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Grid Lanes Test: align-items stretch and center in column direction with dense-packed multi-spanning item</title>
  <link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
  <link rel="help" href="https://drafts.csswg.org/css-grid-3/#alignment">
  <link rel="help" href="https://drafts.csswg.org/css-grid-3/#grid-lanes-dense-packing">
  <link rel="match" href="column-dense-packing-align-items-multi-span-002-ref.html">
  <style>
    html, body {
      color: black; background-color: white; font: 16px/1 monospace; padding: 0; margin: 0;
    }

    .grid-lanes {
      display: grid-lanes;
      grid-template-columns: repeat(4, 50px);
      grid-lanes-pack: dense;
      padding: 2px;
      margin: 5px;
    }

    item {
      display: block;
      color: white;
    }
  </style>
</head>
<body>

<div class="grid-lanes" style="align-items: stretch;">
  <item style="height: 70px; background: salmon;">1</item>
  <item style="height: 20px; background: salmon; grid-column: 4;">2</item>
  <item style="height: 20px; background: salmon; grid-column: 3 / span 2;">3</item>
  <item style="height: 20px; background: salmon; grid-column: span 4;">4</item>
  <item style="height: 10px; background: green; grid-column: span 2;">5</item>
</div>

<div class="grid-lanes" style="align-items: center;">
  <item style="height: 70px; background: salmon;">1</item>
  <item style="height: 35px; background: salmon; grid-column: 4;">2</item>
  <item style="height: 20px; background: salmon; grid-column: 3 / span 2;">3</item>
  <item style="height: 20px; background: salmon; grid-column: span 4;">4</item>
  <item style="height: 10px; background: green; grid-column: span 2;">5</item>
  <item style="height: 10px; background: yellow; grid-column: span 2;">6</item>
</div>

</body>
</html>

/css/css-grid/grid-lanes/alignment/column-dense-packing-align-items-multi-span-002-ref.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    html, body {
      color: black; background-color: white; font: 16px/1 monospace; padding: 0; margin: 0;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4, 50px);
      grid-template-rows: 70px 20px;
      padding: 2px;
      margin: 5px;
    }

    item {
      display: block;
      color: white;
    }
  </style>
</head>
<body>

<div class="grid">
  <item style="grid-column: 1; grid-row: 1; height: 70px; align-self: start; background: salmon;">1</item>
  <item style="grid-column: 4; grid-row: 1; height: 20px; align-self: start; background: salmon;">2</item>
  <item style="grid-column: 3 / span 2; grid-row: 1; height: 20px; margin-top: 20px; align-self: start; background: salmon;">3</item>
  <item style="grid-column: 1 / span 4; grid-row: 2; height: 20px; background: salmon;">4</item>
  <item style="grid-column: 2 / span 2; grid-row: 1; height: 10px; align-self: start; background: green;">5</item>
</div>

<div class="grid">
  <item style="grid-column: 1; grid-row: 1; height: 70px; align-self: start; background: salmon;">1</item>
  <item style="grid-column: 4; grid-row: 1; height: 35px; align-self: start; background: salmon;">2</item>
  <item style="grid-column: 3 / span 2; grid-row: 1; height: 20px; margin-top: 42.5px; align-self: start; background: salmon;">3</item>
  <item style="grid-column: 1 / span 4; grid-row: 2; height: 20px; background: salmon;">4</item>
  <item style="grid-column: 2 / span 2; grid-row: 1; height: 10px; align-self: start; background: green;">5</item>
  <item style="grid-column: 2 / span 2; grid-row: 1; height: 25px; margin-top: 10px; display: grid; align-items: center;"><span style="height: 10px; background: yellow; color: white;">6</span></item></div>
</body>
</html>