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

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

Issue 1379263002: Don't use pairwise keyframe interpolation at fractions 0 and 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_listInterpolationFunctions
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/animations/interpolation/text-shadow-interpolation.html
diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/text-shadow-interpolation.html b/third_party/WebKit/LayoutTests/animations/interpolation/text-shadow-interpolation.html
index 12e0d26c4f656d92ecfbcba0df188021c41560d4..5ede603fc5fb00bf81cf4ad8ede2e3b52f500213 100644
--- a/third_party/WebKit/LayoutTests/animations/interpolation/text-shadow-interpolation.html
+++ b/third_party/WebKit/LayoutTests/animations/interpolation/text-shadow-interpolation.html
@@ -39,7 +39,7 @@ assertInterpolation({
to: '20px 20px 20px green',
}, [
{at: -0.3, is: 'rgba(0, 0, 0, 0) -6px -6px 0px'},
- {at: 0, is: 'rgba(0, 0, 0, 0) 0px 0px 0px'},
+ {at: 0, is: 'none'},
{at: 0.3, is: 'rgba(0, 128, 0, 0.3) 6px 6px 6px'},
{at: 0.6, is: 'rgba(0, 128, 0, 0.6) 12px 12px 12px'},
{at: 1, is: 'rgb(0, 128, 0) 20px 20px 20px'},

Powered by Google App Engine
This is Rietveld 408576698