diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/image/img-invalidation-local-transform-1.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/image/img-invalidation-local-transform-1.html')
-rw-r--r-- | layout/reftests/image/img-invalidation-local-transform-1.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/layout/reftests/image/img-invalidation-local-transform-1.html b/layout/reftests/image/img-invalidation-local-transform-1.html new file mode 100644 index 0000000000..9bc45ad759 --- /dev/null +++ b/layout/reftests/image/img-invalidation-local-transform-1.html @@ -0,0 +1,51 @@ +<!DOCTYPE HTML> +<html class="reftest-wait"> +<!-- test for bug 1469000 https://bugzilla.mozilla.org/show_bug.cgi?id=1469000 --> +<!-- this based on image/*/delaytest.html tests --> +<head> +<style> + img { + max-width: 100%; + height: auto; + } +</style> +</head> +<body> +<div style="width: 450px"> +<img id="image1" src="img-invalidation-local-transform-1.png" srcset="img-invalidation-local-transform-1.png 400w, img-invalidation-local-transform-1.png 217w, img-invalidation-local-transform-1.png 100w"> +</div> + + +<script> +window.addEventListener("load", forceDecode); +window.addEventListener("MozReftestInvalidate", reftestInvalidateListener); + +let decodeComplete = false; +let gotReftestInvalidate = false; + +function forceDecode() { + let img = document.getElementById("image1"); + img.decode().then(function() { + decodeComplete = true; + maybeStartTimer(); + }); +} + +function reftestInvalidateListener() { + gotReftestInvalidate = true; + maybeStartTimer(); +} + +function maybeStartTimer() { + if (decodeComplete && gotReftestInvalidate) { + startTimer(); + } +} + +function startTimer() { + const delay = 2000; + setTimeout("document.documentElement.className = '';", delay); +} +</script> +</body> +</html> |