wpt / css / css-grid / grid-lanes / subgrid / grid-subgridded-to-grid-lanes / line-names / column-line-names-011.html

Status: FAIL | Duration: 10ms | 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/line-names/column-line-names-011.html

<!DOCTYPE HTML>
<html><head>
  <meta charset="utf-8">
  <title>CSS Grid Lanes Test: subgrid line names do not apply to non-subgrids (columns)</title>
  <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
  <link rel="help" href="https://drafts.csswg.org/css-grid-3">
  <link rel="match" href="column-line-names-011-ref.html">
  <style>
html,body {
  color:black; background-color:white; font:12px/1 monospace; padding:0; margin:0;
}

.grid-lanes > div { background: grey; grid-column:2 / span 2; }

x { background: silver; }
  </style>
</head>
<body>

<div style="display:inline-grid-lanes; grid-template-columns: subgrid [a] [b] [c] [d];">
  <x style="grid-column: a / d">x</x>
</div>

<div style="display:inline-grid-lanes; grid-template-columns: repeat(4, 30px);">
  <div style="display:grid; grid:subgrid [c] [d] [d] [e] / auto;">
    <x style="grid-column: c">x</x>
  </div>
</div>
</body>
</html>

/css/css-grid/grid-lanes/subgrid/grid-subgridded-to-grid-lanes/line-names/column-line-names-011-ref.html

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

.grid-lanes > div { background: grey; grid-column:2 / span 2; }

x { background: silver; }
  </style>
</head>
<body>

<div style="display:inline-grid-lanes; grid-template-columns: subgrid [a] [b] [c] [d];">
  <x style="grid-column: 2 / 3">x</x>
</div>

<div style="display:inline-grid-lanes; grid-template-columns: repeat(4, 30px);">
  <div style="display:grid; grid:subgrid [c] [d] [d] [e] / auto;">
    <x style="grid-column: 3">x</x>
  </div>
</div>
</body>
</html>