1
0
Fork 0
firefox/layout/reftests/image-element/image-outside-document-invalidate.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
649 B
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
Test that document.mozSetImageElement() after an image load causes a repaint.
-->
<!DOCTYPE html>
<html class="reftest-wait">
<body style="background: -moz-element(#e) red">
<script>
window.addEventListener("MozReftestInvalidate", function () {
var img = new Image();
img.src = "data:image/gif;base64,R0lGODlhAQABAID/AP///wAAACwAAAAAAQABAAACAkQBADs="; /* 1x1 white gif */
document.mozSetImageElement("e", img);
img.onload = function () {
document.documentElement.className = "";
};
});
</script>
</body>
</html>