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-002.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-002.html')
-rw-r--r-- | testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002.html | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002.html b/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002.html new file mode 100644 index 0000000000..26ae89e479 --- /dev/null +++ b/testing/web-platform/tests/css/css-images/object-fit-dyn-aspect-ratio-002.html @@ -0,0 +1,71 @@ +<!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 Test: 'object-fit: contain' and 'cover' on object element whose aspect ratio dynamically changes</title> + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> + <link rel="help" href="http://www.w3.org/TR/css3-images/#sizing"> + <link rel="help" href="http://www.w3.org/TR/css3-images/#the-object-fit"> + <link rel="match" href="object-fit-dyn-aspect-ratio-002-ref.html"> + <style> + object { + margin: 1px; + float: left; + /* I'm just using 'object-position' for cosmetic reasons, so that the + painted areas are all snapped to top-left which makes reference case + more trivial. */ + object-position: top left; + } + .cov { object-fit: cover; } + .con { object-fit: contain; } + + .square { + width: 24px; + height: 24px; + } + .bigWide { + width: 48px; + height: 32px; + } + .bigTall { + width: 32px; + height: 48px; + } + .small { + width: 8px; + height: 8px; + } + + br { clear: both; } + + </style> + <script> + function go() { + for (let elem of document.getElementsByTagName("object")) { + var doc = elem.contentDocument; + /* These should all should select out a piece of the + bottom-right quadrant (the lime chunk): */ + doc.documentElement.setAttribute("viewBox", "4 8 4 8"); + } + } + </script> + </head> + <body onload="go()"> + <object data="support/colors-8x16-parDefault.svg" class="square cov"></object> + <object data="support/colors-8x16-parDefault.svg" class="square con"></object> + <br> + <object data="support/colors-8x16-parDefault.svg" class="bigWide cov"></object> + <object data="support/colors-8x16-parDefault.svg" class="bigWide con"></object> + <br> + <object data="support/colors-8x16-parDefault.svg" class="bigTall cov"></object> + <object data="support/colors-8x16-parDefault.svg" class="bigTall con"></object> + <br> + <object data="support/colors-8x16-parDefault.svg" class="small cov"></object> + <object data="support/colors-8x16-parDefault.svg" class="small con"></object> + <br> + </body> +</html> |