diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/anonymous-grid-items-001.html')
-rw-r--r-- | testing/web-platform/tests/css/css-grid/anonymous-grid-items-001.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/anonymous-grid-items-001.html b/testing/web-platform/tests/css/css-grid/anonymous-grid-items-001.html new file mode 100644 index 0000000000..f5ddd5c340 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/anonymous-grid-items-001.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> +<title>CSS Grid: anonynous grid items.</title> +<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> +<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-items"> +<link rel="match" href="reference/anonymous-grid-items-001-ref.html"> +<meta name="assert" content="This test ensures that anonymous grid items are supported."/> +<body> + <div>The test passes if it has the same output than the reference.</div> + <div style="display: grid;"> + anonymous item + </div> +</body> +</html> |