gecko-dev/layout/reftests/web-animations/stacking-context-opacity-changing-target-in-delay.html
Hiroyuki Ikezoe 1aadd2a502 Bug 1223658 - Part 7: Reftests for checking stacking context when changing keyframe and target directly in delay phase. r=birtles
MozReview-Commit-ID: 5skSGbo7qp2

--HG--
extra : rebase_source : 5285b94d1183851514667d2512a0a1e3021a1c97
2016-10-14 19:14:12 +09:00

39 lines
880 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<title>
Changing target to an element that does not override opacity animations
creates a stacking context even if the animation is delay phase
</title>
<style>
span {
height: 100px;
width: 100px;
position: fixed;
background: green;
top: 50px;
}
#first {
width: 100px; height: 100px;
background: blue;
opacity: 1 ! important;
}
#second {
width: 100px; height: 100px;
background: blue;
}
</style>
<span></span>
<div id="first"></div>
<div id="second"></div>
<script>
var anim = document.getElementById("first")
.animate({ opacity: [0, 1] },
{ delay: 100000, duration: 100000 });
anim.ready.then(function() {
anim.effect.target = document.getElementById("second");
requestAnimationFrame(function() {
document.documentElement.classList.remove("reftest-wait");
});
});
</script>