diff options
Diffstat (limited to 'testing/web-platform/tests/css/motion/animation/offset-interpolation.html')
-rw-r--r-- | testing/web-platform/tests/css/motion/animation/offset-interpolation.html | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/motion/animation/offset-interpolation.html b/testing/web-platform/tests/css/motion/animation/offset-interpolation.html new file mode 100644 index 0000000000..9c3747185d --- /dev/null +++ b/testing/web-platform/tests/css/motion/animation/offset-interpolation.html @@ -0,0 +1,97 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-shorthand"> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <script src="/css/support/interpolation-testcommon.js"></script> + </head> + <body> + <script> + test_interpolation({ + property: 'offset', + from: 'path("M0 200H 700") 500px 800deg', + to: 'path("M0 300H 700 Z") 600px 900deg', + method: 'CSS Transitions', + }, [ + {at: -0.3, expect: 'path("M0 200H 700") 470px 770deg'}, + {at: 0, expect: 'path("M0 200H 700") 500px 800deg'}, + {at: 0.3, expect: 'path("M0 200H 700") 530px 830deg'}, + {at: 0.6, expect: 'path("M0 300H 700 Z") 560px 860deg'}, + {at: 1, expect: 'path("M0 300H 700 Z") 600px 900deg'}, + {at: 1.5, expect: 'path("M0 300H 700 Z") 650px 950deg'}, + ]); + + test_interpolation({ + property: 'offset', + from: 'path("M0 0H 200") 500px auto', + to: 'path("M0 0H 300") 600px 0deg', + method: 'CSS Transitions', + }, [ + {at: -0.3, expect: 'path("M0 0H 170") 470px auto 0deg'}, + {at: 0, expect: 'path("M0 0H 200") 500px auto 0deg'}, + {at: 0.3, expect: 'path("M0 0H 230") 530px auto 0deg'}, + {at: 0.6, expect: 'path("M0 0H 260") 560px 0deg'}, + {at: 1, expect: 'path("M0 0H 300") 600px 0deg'}, + {at: 1.5, expect: 'path("M0 0H 350") 650px 0deg'}, + ]); + + test_interpolation({ + property: 'offset', + from: 'path("M0 200H 700") 500px 800deg', + to: 'path("M0 300H 700 Z") 600px 900deg', + method: 'CSS Animations', + }, [ + {at: -0.3, expect: 'path("M0 200H 700") 470px 770deg'}, + {at: 0, expect: 'path("M0 200H 700") 500px 800deg'}, + {at: 0.3, expect: 'path("M0 200H 700") 530px 830deg'}, + {at: 0.6, expect: 'path("M0 300H 700 Z") 560px 860deg'}, + {at: 1, expect: 'path("M0 300H 700 Z") 600px 900deg'}, + {at: 1.5, expect: 'path("M0 300H 700 Z") 650px 950deg'}, + ]); + + test_interpolation({ + property: 'offset', + from: 'path("M0 0H 200") 500px auto', + to: 'path("M0 0H 300") 600px 0deg', + method: 'CSS Animations', + }, [ + {at: -0.3, expect: 'path("M0 0H 170") 470px'}, + {at: 0, expect: 'path("M0 0H 200") 500px'}, + {at: 0.3, expect: 'path("M0 0H 230") 530px'}, + {at: 0.6, expect: 'path("M0 0H 260") 560px 0deg'}, + {at: 1, expect: 'path("M0 0H 300") 600px 0deg'}, + {at: 1.5, expect: 'path("M0 0H 350") 650px 0deg'}, + ]); + + test_interpolation({ + property: 'offset', + from: 'path("M0 200H 700") 500px 800deg', + to: 'path("M0 300H 700 Z") 600px 900deg', + method: 'Web Animations', + }, [ + {at: -0.3, expect: 'path("M0 200H 700") 470px 770deg'}, + {at: 0, expect: 'path("M0 200H 700") 500px 800deg'}, + {at: 0.3, expect: 'path("M0 200H 700") 530px 830deg'}, + {at: 0.6, expect: 'path("M0 300H 700 Z") 560px 860deg'}, + {at: 1, expect: 'path("M0 300H 700 Z") 600px 900deg'}, + {at: 1.5, expect: 'path("M0 300H 700 Z") 650px 950deg'}, + ]); + + test_interpolation({ + property: 'offset', + from: 'path("M0 0V 200") 500px auto', + to: 'path("M0 0H 300") 600px 0deg', + method: 'Web Animations', + }, [ + {at: -0.3, expect: 'path("M0 0V 200") 470px'}, + {at: 0, expect: 'path("M0 0V 200") 500px'}, + {at: 0.3, expect: 'path("M0 0V 200") 530px'}, + {at: 0.6, expect: 'path("M0 0H 300") 560px 0deg'}, + {at: 1, expect: 'path("M0 0H 300") 600px 0deg'}, + {at: 1.5, expect: 'path("M0 0H 300") 650px 0deg'}, + ]); + </script> + </body> +</html> |