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

Unified Diff: third_party/WebKit/LayoutTests/animations/interpolation/box-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/box-shadow-interpolation.html
diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/box-shadow-interpolation.html b/third_party/WebKit/LayoutTests/animations/interpolation/box-shadow-interpolation.html
index 6e83bb3392b3757960ae1e7b3d60192650f72877..b8090b42dc58f9700e9850bd6b19dd5ad4f595ca 100644
--- a/third_party/WebKit/LayoutTests/animations/interpolation/box-shadow-interpolation.html
+++ b/third_party/WebKit/LayoutTests/animations/interpolation/box-shadow-interpolation.html
@@ -41,7 +41,7 @@ assertInterpolation({
to: '20px 20px 20px 20px black',
}, [
{at: -0.3, is: '-6px -6px 0px -6px transparent'},
- {at: 0, is: '0px 0px 0px 0px transparent'},
+ {at: 0, is: 'none'},
{at: 0.3, is: '6px 6px 6px 6px rgba(0, 0, 0, 0.3)'},
{at: 0.6, is: '12px 12px 12px 12px rgba(0, 0, 0, 0.6)'},
{at: 1, is: '20px 20px 20px 20px black'},
@@ -67,7 +67,7 @@ assertInterpolation({
to: '20px 20px 20px 20px black',
}, [
{at: -0.3, is: '-6px -6px 0px -6px transparent'},
- {at: 0, is: '0px 0px 0px 0px transparent'},
+ {at: 0, is: 'none'},
{at: 0.3, is: '6px 6px 6px 6px rgba(0, 0, 0, 0.3)'},
{at: 0.6, is: '12px 12px 12px 12px rgba(0, 0, 0, 0.6)'},
{at: 1, is: '20px 20px 20px 20px black'},
@@ -137,7 +137,7 @@ assertInterpolation({
{at: 0, is: '10px 20px rgba(255, 255, 0, 0.5), inset 5px 30px #008000'},
{at: 0.3, is: '7px 14px rgba(255, 255, 0, 0.35), inset 3.5px 21px rgba(0, 128, 0, 0.7)'},
{at: 0.6, is: '4px 8px rgba(255, 255, 0, 0.2), inset 2px 12px rgba(0, 128, 0, 0.4)'},
- {at: 1, is: '0px 0px 0px 0px transparent, inset 0px 0px 0px 0px transparent'},
+ {at: 1, is: 'none'},
{at: 1.5, is: '-5px -10px transparent, inset -2.5px -15px transparent'},
]);

Powered by Google App Engine
This is Rietveld 408576698