diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-row-008.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-row-008.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-row-008.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-row-008.html b/testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-row-008.html new file mode 100644 index 0000000000..58dee77510 --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/flex-aspect-ratio-img-row-008.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 width is honored when used as a flex base size and no intrinsic height is specified." /> + +<p>Test passes if there is a filled green square.</p> + +<div style="display: flex; width: 100px;"> + <img src="data:image/svg+xml,%3Csvg viewBox='0 0 200 400' width='50px' xmlns='http://www.w3.org/2000/svg' %3E%3Crect width='100%' height='100%' fill='green' /%3E%3C/svg%3E" style="border-left: 50px solid green; min-width: 0px;"> +</div> |