testing/web-platform/tests/css/css-masking/clip-path/animations/clip-path-animation-fixed-position-ref.html
author Lando <lando@lando.test>
Thu, 10 Jul 2025 16:11:40 +0000 (7 hours ago)
changeset 795966 8f464d9c468ba1a7c1b0338deaa8bc8023f8ae3d
parent 637566 e5b7577741b66863339a74d9a9bcd3d3b9abaf41
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE html>
<style>
  .container {
    position: fixed;
    top: 100px;
    left: 100px;
    width: 100px;
    height: 100px;
    background-color: green;
    clip-path: circle(200% at 35% 35%);
  }

  .big {
    position: absolute;
    top: 100px;
    width: 500px;
    height: 500px;
    background-color: blue;
  }
</style>

<body>
  <div class="container">
    <div class="big"></div>
  </div>
</body>

</html>