summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html')
-rw-r--r--testing/web-platform/tests/css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html b/testing/web-platform/tests/css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html
new file mode 100644
index 0000000000..42bcbcfab0
--- /dev/null
+++ b/testing/web-platform/tests/css/css-grid/subgrid/crashtests/subgridded-axis-auto-repeater-002.html
@@ -0,0 +1,20 @@
+<!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;
+ position: relative;
+ grid-template-columns: subgrid repeat(auto-fill, [b]);
+ }
+ </style>
+</head>
+<body>
+ <div id="grid">
+ <div style="position: absolute; grid-column: b"></div>
+ </div>
+</body>
+</html> \ No newline at end of file