summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-001.html
blob: 2edb01db08c9a5c319d36a9e74082b1a83953ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Grid with a subgridded axis and an auto repeater as line name list</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-2">
  <style>
    #grid {
      display: grid;
      grid-template-columns: subgrid repeat(auto-fill, [b]);
    }
  </style>
</head>
<body>
  <div id="grid">
    <div style="grid-column: b"></div>
  </div>
</body>
</html>