Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!--
Any copyright is dedicated to the Public Domain.
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>