summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/motion/animation/reftests/offset-path-with-transforms-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/motion/animation/reftests/offset-path-with-transforms-001.html')
-rw-r--r--testing/web-platform/tests/css/motion/animation/reftests/offset-path-with-transforms-001.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/motion/animation/reftests/offset-path-with-transforms-001.html b/testing/web-platform/tests/css/motion/animation/reftests/offset-path-with-transforms-001.html
new file mode 100644
index 0000000000..c554264032
--- /dev/null
+++ b/testing/web-platform/tests/css/motion/animation/reftests/offset-path-with-transforms-001.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <head>
+ <title>CSS Motion Path: Combined transformation matrix interpolation</title>
+ <link rel="help" href="https://drafts.csswg.org/css-transforms-2/#ctm">
+ <link rel="match" href="offset-path-with-transforms-ref.html">
+ <meta name="assert" content="This tests animating combined transformation matrix.">
+ <style>
+ @keyframes anim {
+ to {
+ translate: 0px 100px;
+ offset-distance: 100%;
+ transform: translateX(-100px);
+ }
+ }
+ #target {
+ position: absolute;
+ width: 100px;
+ height: 50px;
+ background-color: lime;
+ offset-path: path("M25 0v100");
+ animation: anim 10s -5s paused linear;
+ }
+ </style>
+ </head>
+ <body onload="load()">
+ <div id="target"></div>
+ <div style='width: 50px; height: 100px; background-color: red;'></div>
+ </body>
+ <script>
+ requestAnimationFrame(() => {
+ document.documentElement.classList.remove('reftest-wait');
+ });
+ </script>
+</html>