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

Side by Side Diff: LayoutTests/animations/resources/composited-animations-data/rotate-zero-degrees.js

Issue 1270303002: Composited Animations: Introduce pixel-ref layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@disable
Patch Set: Use CSS styles instead of custom flags. Created 5 years, 3 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 var animateRotateNoFromAxis = {
2 keyframes: [
3 { rotate: '0deg' },
4 { rotate: '90deg 0 1 0' },
5 ],
6 style: `background: magenta; margin: 5px;`,
7 samples: getLinearSamples(20, 0, 1)
8 }
9
10 var animateRotateNoToAxis = {
11 keyframes: [
12 { rotate: '0deg 1 0 0' },
13 { rotate: '90deg' },
14 ],
15 style: `background: yellow; margin: 5px;`,
16 samples: getLinearSamples(20, 0, 1)
17 }
18
19 var animateRotateFromZeroUnder360 = {
20 keyframes: [
21 { rotate: '0deg 1 0 0' },
22 { rotate: '90deg 0 1 0' },
23 ],
24 style: `background: cyan; margin: 5px;`,
25 samples: getLinearSamples(20, 0, 1)
26 };
27
28 var animateRotateToZeroUnder360 = {
29 keyframes: [
30 { rotate: '90deg 0 1 0' },
31 { rotate: '0deg 1 0 0' },
32 ],
33 style: `background: indigo; margin: 5px;`,
34 samples: getLinearSamples(20, 0, 1)
35 };
36
37 var animateRotateFromZero = {
38 keyframes: [
39 { rotate: '0deg 1 0 0' },
40 { rotate: '450deg 0 1 0' },
41 ],
42 style: `background: green; margin: 5px;`,
43 samples: getLinearSamples(20, 0, 1)
44 };
45
46 var animateRotateToZero = {
47 keyframes: [
48 { rotate: '450deg 0 1 0' },
49 { rotate: '0deg 1 0 0' },
50 ],
51 style: `background: red; margin: 5px;`,
52 samples: getLinearSamples(20, 0, 1)
53 }
54
55 var animateRotateFromAndToZero = {
56 keyframes: [
57 { rotate: '0deg 0 1 0' },
58 { rotate: '0deg 1 0 0' },
59 ],
60 style: `background: blue; margin: 5px;`,
61 samples: getLinearSamples(20, 0, 1)
62 }
63
64 var rotateZeroDegreesTests = [
65 animateRotateNoFromAxis,
66 animateRotateNoToAxis,
67 animateRotateFromZeroUnder360,
68 animateRotateToZeroUnder360,
69 animateRotateFromZero,
70 animateRotateToZero,
71 animateRotateFromAndToZero,
72 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698