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

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

Issue 189883003: Web Animations: Allow animations with delay to start on compositor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/animations/interpolation/transform-interpolation.html
diff --git a/LayoutTests/animations/interpolation/transform-interpolation.html b/LayoutTests/animations/interpolation/transform-interpolation.html
index 9f65752f33846fdec6941f5f556c63c78a5416d2..89e2ec7ca08ff15340513fd763f0d25d1238768c 100644
--- a/LayoutTests/animations/interpolation/transform-interpolation.html
+++ b/LayoutTests/animations/interpolation/transform-interpolation.html
@@ -589,7 +589,7 @@ assertInterpolation({
to: 'rotate(180deg)'
}, [
{at: -1, is: 'rotate(-180deg)'},
- {at: 0, is: 'rotate(0deg)'},
+ {at: 0, is: 'none'},
{at: 0.25, is: 'rotate(45deg)'},
{at: 0.75, is: 'rotate(135deg)'},
{at: 1, is: 'rotate(180deg)'},
@@ -604,7 +604,7 @@ assertInterpolation({
{at: 0, is: 'rotate(180deg)'},
{at: 0.25, is: 'rotate(135deg)'},
{at: 0.75, is: 'rotate(45deg)'},
- {at: 1, is: 'rotate(0deg)'},
+ {at: 1, is: 'none'},
{at: 2, is: 'rotate(-180deg)'},
]);
assertInterpolation({
@@ -613,7 +613,7 @@ assertInterpolation({
to: 'rotate(360deg)'
}, [
{at: -1, is: 'rotate(-360deg)'},
- {at: 0, is: 'rotate(0deg)'},
+ {at: 0, is: 'none'},
{at: 0.25, is: 'rotate(90deg)'},
{at: 0.75, is: 'rotate(270deg)'},
{at: 1, is: 'rotate(360deg)'},

Powered by Google App Engine
This is Rietveld 408576698