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

Unified Diff: third_party/WebKit/LayoutTests/animations/interpolation/transform-interpolation.html

Issue 2519333004: Don't use post multiplication on transforms with compatible pairs of operations (Closed)
Patch Set: Rename Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/transform-post-multiplication.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/interpolation/transform-interpolation.html
diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/transform-interpolation.html b/third_party/WebKit/LayoutTests/animations/interpolation/transform-interpolation.html
index 175bda21fd7fae7278bd1604b2ece03c1ff9976f..318436a3e7d8c5184e289c4ac8424b15572b27c7 100644
--- a/third_party/WebKit/LayoutTests/animations/interpolation/transform-interpolation.html
+++ b/third_party/WebKit/LayoutTests/animations/interpolation/transform-interpolation.html
@@ -323,6 +323,18 @@ assertInterpolation({
]);
assertInterpolation({
property: 'transform',
+ from: 'scaleX(0)',
+ to: 'scaleY(0)',
+}, [
+ {at: -1, is: 'scale(-1, 2)'},
+ {at: 0, is: 'scale(0, 1)'},
+ {at: 0.25, is: 'scale(0.25, 0.75)'},
+ {at: 0.75, is: 'scale(0.75, 0.25)'},
+ {at: 1, is: 'scale(1, 0)'},
+ {at: 2, is: 'scale(2, -1)'},
+]);
+assertInterpolation({
+ property: 'transform',
from: 'none',
to: 'scale3d(2, 3, 5)'
}, [
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/transform-post-multiplication.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698