summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/motion/animation/reftests/offset-rotate-interpolation-001.html
blob: 360caeea68242cc80cbdb131884c633a6f3f7b47 (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-rotate interpolation</title>
    <link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-rotate-property">
    <link rel="match" href="offset-path-path-interpolation-ref.html">
    <meta name="assert" content="offset-rotate supports animation.">
    <style>
      @keyframes anim {
        from { offset-rotate: auto; }
        to   { offset-rotate: reverse; }
      }
      #target {
        position: absolute;
        left: 300px;
        top: 0px;
        width: 300px;
        height: 200px;
        background-color: lime;
        transform-origin: 0px 0px;
        offset-path: path("m 100 150 v -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>