mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
656 B
HTML
25 lines
656 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 = "";
|
|
};
|
|
}, false);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|