Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(668)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/easing-expected.txt

Issue 2775143002: Implement frames() timing function (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 This is a testharness.js-based test.
2 PASS Test default value
3 PASS step-start function
4 PASS steps(1, start) function
5 PASS steps(2, start) function
6 PASS step-end function
7 PASS steps(1) function
8 PASS steps(1, end) function
9 PASS steps(2, end) function
10 PASS linear function
11 PASS ease function
12 PASS ease-in function
13 PASS ease-in-out function
14 PASS ease-out function
15 PASS easing function which produces values greater than 1
16 PASS easing function which produces values less than 1
17 PASS Invalid effect easing value test: ''
18 PASS Invalid effect easing value test: '7'
19 PASS Invalid effect easing value test: 'test'
20 PASS Invalid effect easing value test: 'initial'
21 PASS Invalid effect easing value test: 'inherit'
22 PASS Invalid effect easing value test: 'unset'
23 PASS Invalid effect easing value test: 'cubic-bezier(1.1, 0, 1, 1)'
24 PASS Invalid effect easing value test: 'cubic-bezier(0, 0, 1.1, 1)'
25 PASS Invalid effect easing value test: 'cubic-bezier(-0.1, 0, 1, 1)'
26 PASS Invalid effect easing value test: 'cubic-bezier(0, 0, -0.1, 1)'
27 PASS Invalid effect easing value test: 'cubic-bezier(0.1, 0, 4, 0.4)'
28 PASS Invalid effect easing value test: 'steps(-1, start)'
29 PASS Invalid effect easing value test: 'steps(0.1, start)'
30 PASS Invalid effect easing value test: 'steps(3, nowhere)'
31 PASS Invalid effect easing value test: 'steps(-3, end)'
32 PASS Invalid effect easing value test: 'function (a){return a}'
33 PASS Invalid effect easing value test: 'function (x){return x}'
34 PASS Invalid effect easing value test: 'function(x, y){return 0.3}'
35 PASS Canonical easing 'ease' is returned as set
36 PASS Canonical easing 'linear' is returned as set
37 PASS Canonical easing 'ease-in' is returned as set
38 PASS Canonical easing 'ease-out' is returned as set
39 PASS Canonical easing 'ease-in-out' is returned as set
40 PASS Canonical easing 'cubic-bezier(0.1, 5, 0.23, 0)' is returned as set
41 PASS Canonical easing 'steps(3, start)' is returned as set
42 PASS Canonical easing 'steps(3)' is returned as set
43 FAIL Canonical easing 'frames(3)' is returned as set Failed to set the 'easing' property on 'AnimationEffectTiming': 'frames(3)' is not a valid value for easing
44 PASS Change the easing while the animation is running
45 Harness: the test ran to completion.
46
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698