Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!--
Any copyright is dedicated to the Public Domain.
Test that document.mozSetImageElement() after a paint causes a repaint.
-->
<!DOCTYPE html>
<html class="reftest-wait">
<body style="background-image: -moz-element(#e)">
<div style="overflow:hidden; height:0;">
<div id="e" style="width: 50px; height: 50px; background: red;"></div>
<div id="white" style="width: 50px; height: 50px; background: white;"></div>
</div>
<script>
window.addEventListener("MozReftestInvalidate", function () {
document.mozSetImageElement("e", document.getElementById("white"));
document.documentElement.className = "";
});
</script>
</body>
</html>