summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html')
-rw-r--r--testing/web-platform/tests/css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html b/testing/web-platform/tests/css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html
new file mode 100644
index 0000000000..45e527dd44
--- /dev/null
+++ b/testing/web-platform/tests/css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+<link rel="author" title="Sammy Gill" href="sammy.gill@apple.com">
+<meta name="assert" content="Grid's definite free space for row track sizing should be the content box logical height when computed from the aspect ratio">
+<link rel="help" href="https://drafts.csswg.org/css-grid-2/#algo-stretch">
+<link rel="help" href="https://drafts.csswg.org/css-grid-2/#free-space">
+<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#definite">
+<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
+<style>
+.grid {
+ display: grid;
+ width: 100px;
+ border-block: 10px solid green;
+ padding-block: 20px;
+ background: green;
+ aspect-ratio: 5 / 2;
+}
+</style>
+</head>
+<body>
+ <p>Test passes if there is a filled green square.</p>
+ <div class="grid">
+ <div></div>
+ </div>
+</body>
+</html>