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

Unified Diff: third_party/WebKit/LayoutTests/animations/resources/composited-animations-data/rotate-zero-degrees.js

Issue 2531753002: CSS Independent Transform Properties: support rotate: <axes> <angle> (Closed)
Patch Set: tests Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/animations/resources/composited-animations-data/rotate-zero-degrees.js
diff --git a/third_party/WebKit/LayoutTests/animations/resources/composited-animations-data/rotate-zero-degrees.js b/third_party/WebKit/LayoutTests/animations/resources/composited-animations-data/rotate-zero-degrees.js
index a0b510385621fe83a573d6542b3dfeea5e80ebb0..d4604ef7e49b608a973db635ff574ca616e6343e 100644
--- a/third_party/WebKit/LayoutTests/animations/resources/composited-animations-data/rotate-zero-degrees.js
+++ b/third_party/WebKit/LayoutTests/animations/resources/composited-animations-data/rotate-zero-degrees.js
@@ -4,7 +4,7 @@ var rotateZeroDegreesTests = {
animateRotateNoFromAxis: {
keyframes: [
{ rotate: '0deg' },
- { rotate: '90deg 0 1 0' },
+ { rotate: '0 1 0 90deg' },
],
style: 'background: magenta;',
samples: getLinearSamples(20, 0, 1)
@@ -12,7 +12,7 @@ var rotateZeroDegreesTests = {
animateRotateNoToAxis: {
keyframes: [
- { rotate: '0deg 1 0 0' },
+ { rotate: '1 0 0 0deg' },
{ rotate: '90deg' },
],
style: 'background: yellow;',
@@ -21,8 +21,8 @@ var rotateZeroDegreesTests = {
animateRotateFromZeroUnder360: {
keyframes: [
- { rotate: '0deg 1 0 0' },
- { rotate: '90deg 0 1 0' },
+ { rotate: '1 0 0 0deg' },
+ { rotate: '0 1 0 90deg' },
],
style: 'background: cyan;',
samples: getLinearSamples(20, 0, 1)
@@ -30,8 +30,8 @@ var rotateZeroDegreesTests = {
animateRotateToZeroUnder360: {
keyframes: [
- { rotate: '90deg 0 1 0' },
- { rotate: '0deg 1 0 0' },
+ { rotate: '0 1 0 90deg' },
+ { rotate: '1 0 0 0deg' },
],
style: 'background: indigo;',
samples: getLinearSamples(20, 0, 1)
@@ -39,8 +39,8 @@ var rotateZeroDegreesTests = {
animateRotateFromZero: {
keyframes: [
- { rotate: '0deg 1 0 0' },
- { rotate: '450deg 0 1 0' },
+ { rotate: '1 0 0 0deg' },
+ { rotate: '0 1 0 450deg' },
],
style: 'background: green;',
samples: getLinearSamples(20, 0, 1)
@@ -48,8 +48,8 @@ var rotateZeroDegreesTests = {
animateRotateToZero: {
keyframes: [
- { rotate: '450deg 0 1 0' },
- { rotate: '0deg 1 0 0' },
+ { rotate: '0 1 0 450deg' },
+ { rotate: '1 0 0 0deg' },
],
style: 'background: red;',
samples: getLinearSamples(20, 0, 1)
@@ -57,8 +57,8 @@ var rotateZeroDegreesTests = {
animateRotateFromAndToZero: {
keyframes: [
- { rotate: '0deg 0 1 0' },
- { rotate: '0deg 1 0 0' },
+ { rotate: '0 1 0 0deg' },
+ { rotate: '1 0 0 0deg' },
],
style: 'background: blue;',
samples: getLinearSamples(20, 0, 1)

Powered by Google App Engine
This is Rietveld 408576698