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

38 lines
751 B
HTML

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