mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Update web-platform-tests to revision b'9ce4a6482a088da3d74f895d8ad15c5ce0c25d28'
This commit is contained in:
parent
dca3b2f0c1
commit
02d490892d
162 changed files with 3675 additions and 951 deletions
|
@ -0,0 +1,57 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue