diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html new file mode 100644 index 0000000000..8f9929f97d --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> +<head> + <title>CSS Grid: Reference for grid-template-rows interpolation</title> + <style> + .grid { + display: grid; + width: 400px; + height: 400px; + grid-gap: 10px; + grid-template-rows: 60px 1fr; + } + span { border: 1px solid; } + </style> +</head> +<body> + <div class="grid"> + <span>row1</span> + <span>row2</span> + </div> +</body> +</html> |