mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
617fa803bb
* partially-out-of-view-animation.html This test is a normal test case (i.e. a trivial one). An animation on an element which is partially out of the view. If ofscreen optimization is totally broken, this test will fail. * in-visibility-hidden-animation-pseudo-element.html This test checks animation on visible pseudo element which is attached to invisible element is not throttled. * in-visibility-hidden-animation.html This test checks animation on visible element which is inherited from invisible parent element is not throttled.
37 lines
699 B
HTML
37 lines
699 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, false);
|
|
|
|
function AnimationEndListener(event) {
|
|
setTimeout(RemoveReftestWait, 0);
|
|
}
|
|
|
|
function RemoveReftestWait() {
|
|
document.documentElement.classList.remove("reftest-wait");
|
|
}
|
|
|
|
</script>
|