Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/motion/animation/reftests/offset-path-path-interpolation-001.html
<!DOCTYPE html> <html class="reftest-wait"> <head> <title>offset-path path() interpolation</title> <link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-path-property"> <link rel="match" href="offset-path-path-interpolation-ref.html"> <meta name="assert" content="offset-path path supports animation."> <style> @keyframes anim { from { offset-path: path("m 100 100 l 100 100"); } to { offset-path: path("m 100 200 l 100 -100"); } } #target { position: absolute; left: 300px; top: 0px; width: 300px; height: 200px; background-color: lime; transform-origin: 0px 0px; animation: anim 10s -5s paused linear; } </style> </head> <body> <div id="target"></div> </body> <script> requestAnimationFrame(() => { document.documentElement.classList.remove('reftest-wait'); }); </script> </html>
/css/motion/animation/reftests/offset-path-path-interpolation-ref.html
<!DOCTYPE html> <html> <head> <title>offset-path path interpolation reference</title> <style> #target { position: absolute; left: 300px; top: 0px; width: 300px; height: 200px; background-color: lime; transform-origin: 0px 0px; offset-path: path("M 100 150 L 200 150"); } </style> </head> <body> <div id="target"></div> </body> </html>