diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-column-013.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-column-013.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-column-013.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-column-013.html b/testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-column-013.html new file mode 100644 index 0000000000..81640d518c --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-column-013.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<title>SVG img as flex item</title> +<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org"> +<link rel="help" href="https://drafts.csswg.org/css-flexbox/#algo-main-item" title="Part E"> +<link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> +<meta name="assert" content="SVG's specified intrinsic height is honored when used as a flex base size and no intrinsic width is specified." /> + +<p>Test passes if there is a filled green square.</p> + +<div style="display: flex; width: 100px; height: 100px; align-items: flex-start;"> + <img src="data:image/svg+xml,%3Csvg viewBox='0 0 400 200' height='50px' xmlns='http://www.w3.org/2000/svg' %3E%3Crect width='100%' height='100%' fill='green' /%3E%3C/svg%3E" style="border-top: 50px solid green; min-height: 0px;"> +</div> |