mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 0a518aaff73532a26e175789f7e75fa99593ac64
This commit is contained in:
parent
9c172f49d0
commit
abcd4b654f
92 changed files with 2869 additions and 642 deletions
|
@ -0,0 +1,42 @@
|
|||
var gEffectEasingTests = [
|
||||
{
|
||||
desc: 'steps(start) function',
|
||||
easing: 'steps(2, start)',
|
||||
easingFunction: stepStart(2)
|
||||
},
|
||||
{
|
||||
desc: 'steps(end) function',
|
||||
easing: 'steps(2, end)',
|
||||
easingFunction: stepEnd(2)
|
||||
},
|
||||
{
|
||||
desc: 'linear function',
|
||||
easing: 'linear', // cubic-bezier(0, 0, 1.0, 1.0)
|
||||
easingFunction: cubicBezier(0, 0, 1.0, 1.0)
|
||||
},
|
||||
{
|
||||
desc: 'ease function',
|
||||
easing: 'ease', // cubic-bezier(0.25, 0.1, 0.25, 1.0)
|
||||
easingFunction: cubicBezier(0.25, 0.1, 0.25, 1.0)
|
||||
},
|
||||
{
|
||||
desc: 'ease-in function',
|
||||
easing: 'ease-in', // cubic-bezier(0.42, 0, 1.0, 1.0)
|
||||
easingFunction: cubicBezier(0.42, 0, 1.0, 1.0)
|
||||
},
|
||||
{
|
||||
desc: 'ease-in-out function',
|
||||
easing: 'ease-in-out', // cubic-bezier(0.42, 0, 0.58, 1.0)
|
||||
easingFunction: cubicBezier(0.42, 0, 0.58, 1.0)
|
||||
},
|
||||
{
|
||||
desc: 'ease-out function',
|
||||
easing: 'ease-out', // cubic-bezier(0, 0, 0.58, 1.0)
|
||||
easingFunction: cubicBezier(0, 0, 0.58, 1.0)
|
||||
},
|
||||
{
|
||||
desc: 'easing function which produces values greater than 1',
|
||||
easing: 'cubic-bezier(0, 1.5, 1, 1.5)',
|
||||
easingFunction: cubicBezier(0, 1.5, 1, 1.5)
|
||||
}
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue