diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-position/position-absolute-fit-content.html')
-rw-r--r-- | testing/web-platform/tests/css/css-position/position-absolute-fit-content.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-position/position-absolute-fit-content.html b/testing/web-platform/tests/css/css-position/position-absolute-fit-content.html new file mode 100644 index 0000000000..a84cc04381 --- /dev/null +++ b/testing/web-platform/tests/css/css-position/position-absolute-fit-content.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/3973"> +<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1135207"> +<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1232439"> +<link rel="match" href="../reference/ref-filled-green-100px-square.xht"> +<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> +<div style="position: relative; width: 100px; height: 200px;"> + <div style="position: absolute; top: 0; bottom: 0; left: 0; right: 0; max-height: fit-content; background: green;"> + <div style="height: 100px;"></div> + </div> +</div> |