fune/layout/reftests/css-animations/stacking-context-offset-path-none-with-fill-forwards.html
Boris Chiou a9e57a5534 Bug 1429305 - Extend compositor properties for motion. r=hiro
Differential Revision: https://phabricator.services.mozilla.com/D50014

--HG--
extra : moz-landing-system : lando
2019-10-31 20:07:45 +00:00

24 lines
456 B
HTML

<!DOCTYPE html>
<title>
offset-path animation does not destroy stacking context when the animation
has finished but has fill:forwards
</title>
<style>
span {
height: 100px;
width: 100px;
position: fixed;
background: green;
top: 50px;
}
@keyframes OffsetPathNone {
from, to { offset-path: none }
}
#test {
width: 100px; height: 100px;
background: blue;
animation: OffsetPathNone 0s forwards;
}
</style>
<span></span>
<div id="test"></div>