wpt / css / css-grid / grid-lanes / gap / row-percentage-gap-002.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/gap/row-percentage-gap-002.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Grid Lanes Test: percentage row gap needs additional pass</title>
  <link rel="author" title="Yanling Wang" href="mailto:yanlingwang@microsoft.com">
  <link rel="help" href="https://drafts.csswg.org/css-grid-3">
  <link rel="match" href="row-percentage-gap-002-ref.html">
  <style>
    .grid-lanes {
        display: grid-lanes;
        flow-tolerance: 0;
        grid-template-rows: 40px 40px 40px;
        gap: 10%;
        min-height: 200px;
        width: 100px;
        background: gray;
    }
    .grid-lanes > div {
        width: 100%;
        height: 100%;
        background: green;
    }
  </style>
</head>
<body>
  <div class="grid-lanes">
      <div></div>
      <div></div>
      <div></div>
  </div>
</body>
</html>

/css/css-grid/grid-lanes/gap/row-percentage-gap-002-ref.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    .grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: 40px 40px 40px;
        row-gap: 10%;
        min-height: 200px;
        width: 100px;
        background: gray;
    }
    .grid > div {
        background: green;
    }
  </style>
</head>
<body>
  <div class="grid">
      <div></div>
      <div></div>
      <div></div>
  </div>
</body>
</html>