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-images/object-fit-dyn-aspect-ratio-002-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002-ref.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002-ref.html b/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002-ref.html new file mode 100644 index 0000000000..ddddccad32 --- /dev/null +++ b/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002-ref.html @@ -0,0 +1,58 @@ +<!DOCTYPE html> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html> + <head> + <meta charset="utf-8"> + <title>CSS Reftest Reference</title> + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> + <style> + div { + margin: 1px; + background: lime; + float: left; + } + + .square { + width: 24px; + height: 24px; + } + .bigWide { + width: 48px; + height: 32px; + } + .bigTall { + width: 32px; + height: 48px; + } + .small { + width: 8px; + height: 8px; + } + + br { clear: both; } + + </style> + </head> + <body> + <!-- Note: each inline-style specified width here is just using the final + viewBox aspect-ratio (1/2) times the element's specified height. This + is how wide the concrete object size[1] should end up, for the + testcase's "object-fit:contain" elements. + [1] https://drafts.csswg.org/css-images-3/#concrete-object-size --> + <div class="square"></div> + <div class="square" style="width: 12px"></div> + <br> + <div class="bigWide"></div> + <div class="bigWide" style="width: 16px"></div> + <br> + <div class="bigTall"></div> + <div class="bigTall" style="width: 24px"></div> + <br> + <div class="small"></div> + <div class="small" style="width: 4px"></div> + <br> + </body> +</html> |