summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/motion/animation/reftests/offset-distance-interpolation-001.html
blob: 88441f5b547646274d95e8cf59e8bf29982f279e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <title>offset-distance interpolation</title>
    <link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-distance-property">
    <link rel="match" href="offset-path-path-interpolation-ref.html">
    <meta name="assert" content="offset-distance supports animation.">
    <style>
      @keyframes anim {
        from { offset-distance: 0%; }
        to   { offset-distance: 100%; }
      }
      #target {
        position: absolute;
        left: 300px;
        top: 0px;
        width: 300px;
        height: 200px;
        background-color: lime;
        transform-origin: 0px 0px;
        offset-path: path("m 50 150 h 100");
        animation: anim 10s -5s paused linear;
      }
    </style>
  </head>
  <body>
    <div id="target"></div>
  </body>
  <script>
    requestAnimationFrame(() => {
      document.documentElement.classList.remove('reftest-wait');
    });
  </script>
</html>