gecko-dev/layout/reftests/invalidation/zero-opacity-animation.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

16 lines
409 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div style="opacity:0">
<div id="d" class="reftest-no-paint" style="height:50px; border:2px solid black"></div>
</div>
<script type="application/javascript">
function doTest() {
d.style.border = "2px solid green";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>