wpt / css / css-grid / grid-lanes / subgrid / grid-subgridded-to-grid-lanes / gap / row-subgrid-grid-gap-normal-001.html

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

/css/css-grid/grid-lanes/subgrid/grid-subgridded-to-grid-lanes/gap/row-subgrid-grid-gap-normal-001.html

<!DOCTYPE HTML>
<html><head>
  <meta charset="utf-8">
  <title>CSS Grid Lanes Test: row-direction subgrid with the initial grid-gap value of normal</title>
  <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
  <link rel="help" href="https://drafts.csswg.org/css-grid-3/#subgrids">
  <link rel="match" href="row-subgrid-grid-gap-normal-001-ref.html">
  <style>
  html,body {
    color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
  }

  .grid-lanes {
    display: grid-lanes;
    gap: 10px;
    grid-template-rows: repeat(3,minmax(100px,auto));
    background-color: #fff;
    color: #444;
  }

  .box {
    background-color: #444;
    color: #fff;
    padding: 20px;
  }

  .box .box {
    background-color: #ccc;
    color: #444;
  }

  .c {
    grid-row: 2 / 4;
  }

  .d {
    grid-row: 2 / 4;
    display: grid;
    grid-template-rows: subgrid;
  }
  </style>
</head>
<body>
<div class="grid-lanes">
  <div class="box a">A</div>
  <div class="box b">B</div>
  <div class="box c">C</div>
  <div class="box d">
    <div class="box e">E</div>
    <div class="box f">F</div>
    <div class="box g">G</div>
    <div class="box h">H</div>
    <div class="box i">I</div>
  </div>
</div>
</body>
</html>

/css/css-grid/grid-lanes/subgrid/grid-subgridded-to-grid-lanes/gap/row-subgrid-grid-gap-normal-001-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;
    gap: 10px;
    grid-template-rows: repeat(3,minmax(100px,auto));
    grid-template-columns: min-content min-content min-content;
    background-color: #fff;
    color: #444;
  }

  .box {
    background-color: #444;
    color: #fff;
    padding: 20px;
  }

  .box .box {
    background-color: #ccc;
    color: #444;
  }

  .b {
    grid-row: 2;
  }

  .c {
    grid-row: 2 / 4;
  }

  .d {
    grid-row: 2 / 4;
    display: grid;
    grid-template-rows: subgrid;
  }
  </style>
</head>
<body>
<div class="grid">
  <div class="box a">A</div>
  <div class="box b">B</div>
  <div class="box c">C</div>
  <div class="box d">
    <div class="box e">E</div>
    <div class="box f">F</div>
    <div class="box g">G</div>
    <div class="box h">H</div>
    <div class="box i">I</div>
  </div>
</div>
</body>
</html>