gecko-dev/layout/reftests/css-animations/in-visibility-hidden-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

37 lines
692 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<title>in visibility hidden color animation</title>
<style>
@keyframes color {
0% { color: black }
1% { color: blue }
100% { color: blue }
}
p {
visibility: visible;
}
div {
color: black;
animation: color 0.1s 1 forwards;
visibility: hidden;
}
</style>
<div id="parent"><p>color animation on visible element in invisible parent element</p></div>
<script>
document.getElementById("parent").addEventListener("animationend", AnimationEndListener);
function AnimationEndListener(event) {
setTimeout(RemoveReftestWait, 0);
}
function RemoveReftestWait() {
document.documentElement.classList.remove("reftest-wait");
}
</script>