testing/web-platform/tests/css/css-masking/clip-path/animations/clip-path-animation-zoom.html
author Lando <lando@lando.test>
Fri, 11 Jul 2025 16:34:42 +0000 (111 minutes ago)
changeset 796119 507aed88eb5a92e2e77286f3242050fac00a8201
parent 684236 6030ecd268ad1a53715434323cb5f49c083ea0d2
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#basic-shape-interpolation">
<link rel="match" href="clip-path-animation-zoom-ref.html">
<style>
  .container {
    width: 80px;
    height: 80px;
    background-color: green;
    zoom: 1.25;
    animation: clippath 20s steps(2, jump-end) -9.999s;
  }

  @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>
    waitForAnimationTime(document.getAnimations()[0], 1).then(takeScreenshot);
  </script>
</body>

</html>