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 /layout/reftests/image/image-srcset-isize.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 '')
-rw-r--r-- | layout/reftests/image/image-srcset-isize.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/layout/reftests/image/image-srcset-isize.html b/layout/reftests/image/image-srcset-isize.html new file mode 100644 index 0000000000..2189c2bee9 --- /dev/null +++ b/layout/reftests/image/image-srcset-isize.html @@ -0,0 +1,41 @@ +<!doctype html> +<html reftest-zoom="2" class="reftest-wait"> +<title>CSS Test: srcset intrinsic size isn't confused</title> +<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> +<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1149357"> +<style> +.image-container { + display: inline; +} +.content-container { + display: inline-block; +} +.flex-container { + align-items: center; + display: flex; +} +</style> +<script> + // reftest-zoom is only applied at onload, so ensure the source-selection + // has happened after that + function clearWait() { + document.documentElement.classList.remove("reftest-wait"); + } + window.addEventListener("load", function() { + setTimeout(function() { + var img = document.querySelector("img"); + img.onload = clearWait; + img.onerror = clearWait; + img.src = img.src; + }, 0); + }); +</script> +<div class="flex-container"> + <div class="image-container"> + <img srcset="50.png 0.5x, 100.png 1x, 200.png 2x, 300.png 3x, 400.png"> + </div> + <div class="content-container"> + Should see me right by the side of the image. + </div> +</div> +</html> |