fune/testing/web-platform/tests/css/css-properties-values-api/animation/custom-property-animation-transform-function.html
Antoine Quint 0abc63ed92 Bug 1806142 [wpt PR 37558] - WebKit export of https://bugs.webkit.org/show_bug.cgi?id=249478, a=testonly
Automatic update from web-platform-tests
WebKit export of https://bugs.webkit.org/show_bug.cgi?id=249478 (#37558)

--

wpt-commits: a21d094a6e166e297a7509ddacace4517dabec29
wpt-pr: 37558
2022-12-21 19:34:34 +00:00

57 lines
1.7 KiB
HTML

<!DOCTYPE html>
<link rel="help" href="https://drafts.css-houdini.org/css-properties-values-api-1">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/utils.js"></script>
<div id="target"></div>
<script>
animation_test({
syntax: "<transform-function>",
inherits: false,
initialValue: "translateX(0px)"
}, {
keyframes: ["translateX(100px)", "translateX(200px)"],
expected: "translateX(150px)"
}, 'Animating a custom property of type <transform-function>');
animation_test({
syntax: "<transform-function>",
inherits: false,
initialValue: "translateX(100px)"
}, {
keyframes: "translateX(200px)",
expected: "translateX(150px)"
}, 'Animating a custom property of type <transform-function> with a single keyframe');
animation_test({
syntax: "<transform-function>",
inherits: false,
initialValue: "translateX(100px)"
}, {
composite: "add",
keyframes: ["translateX(200px)", "translateX(300px)"],
expected: "translateX(350px)"
}, 'Animating a custom property of type <transform-function> with additivity');
animation_test({
syntax: "<transform-function>",
inherits: false,
initialValue: "translateX(100px)"
}, {
composite: "add",
keyframes: "translateX(300px)",
expected: "translateX(250px)"
}, 'Animating a custom property of type <transform-function> with a single keyframe and additivity');
animation_test({
syntax: "<transform-function>",
inherits: false,
initialValue: "translateX(100px)"
}, {
iterationComposite: "accumulate",
keyframes: ["translateX(0px)", "translateX(100px)"],
expected: "translateX(250px)"
}, 'Animating a custom property of type <transform-function> with iterationComposite');
</script>