gecko-dev/layout/reftests/image-element/mozsetimageelement-02.html
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

26 lines
708 B
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
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>