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-images/object-fit-dyn-aspect-ratio-001-ref.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-images/object-fit-dyn-aspect-ratio-001-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-001-ref.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-001-ref.html b/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-001-ref.html new file mode 100644 index 0000000000..138f0acbf0 --- /dev/null +++ b/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-001-ref.html @@ -0,0 +1,54 @@ +<!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: the specified heights here are just 1/2 the widths. --> + <div class="square"></div> + <div class="square" style="height: 12px"></div> + <br> + <div class="bigWide"></div> + <div class="bigWide" style="height: 24px"></div> + <br> + <div class="bigTall"></div> + <div class="bigTall" style="height: 16px"></div> + <br> + <div class="small"></div> + <div class="small" style="height: 4px"></div> + <br> + </body> +</html> |