Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="clip-path-animation-zero-duration-ref.html">
<style>
.container {
width: 100px;
height: 100px;
background-color: green;
animation: clippath 0s;
animation-fill-mode: both;
clip-path: inset(25% 25%);
}
@keyframes clippath {
0% { clip-path: circle(50% at 50% 50%); }
100% { clip-path: circle(20% at 20% 20%); }
}
</style>
<script src="/common/reftest-wait.js"></script>
<script src="/web-animations/resources/timing-utils.js"></script>
<body>
<div class="container"></div>
<script>
let animation = document.getAnimations()[0];
// A zero-duration animation should be completed as soon as
// it is ready. Because the fill mode is set to both, the
// resulting style should be the last keyframe of the animation.
animation.ready.then(takeScreenshot);
</script>
</body>
</html>