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

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

Issue 811993002: Animation: Implement DoubleStyleInterpolation in StringKeyframe (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove shape image threshold test Created 5 years, 10 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/widows-interpolation.html
diff --git a/LayoutTests/animations/interpolation/widows-interpolation.html b/LayoutTests/animations/interpolation/widows-interpolation.html
index 0137d098e88bfca9a7dde8fab22315be6bb92d5a..6bde24ae703660a1ad736ca5593677f34bafa6a6 100644
--- a/LayoutTests/animations/interpolation/widows-interpolation.html
+++ b/LayoutTests/animations/interpolation/widows-interpolation.html
@@ -24,4 +24,18 @@ assertInterpolation({
{at: 1, is: '20'},
{at: 1.5, is: '25'}
]);
+assertInterpolation({
+ property: 'widows',
+ from: '2',
+ to: '4'
+}, [
+ {at: -3.0, is: '1'},
+ {at: -2.5, is: '1'},
+ {at: -0.5, is: '1'},
+ {at: 0, is: '2'},
+ {at: 0.3, is: '3'},
+ {at: 0.6, is: '3'},
+ {at: 1, is: '4'},
+ {at: 1.5, is: '5'}
+]);
</script>

Powered by Google App Engine
This is Rietveld 408576698