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

Unified Diff: LayoutTests/animations/interpolation/webkit-column-count-interpolation.html

Issue 1259803007: Make AnimatedStyleBuilder value rounding consistent with StyleBuilder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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/webkit-column-count-interpolation.html
diff --git a/LayoutTests/animations/interpolation/webkit-column-count-interpolation.html b/LayoutTests/animations/interpolation/webkit-column-count-interpolation.html
index dbbbc3415cd0ef2946b847207762368db39779f8..92c08b2d44d65ff06346c7597b57ea8ecc394909 100644
--- a/LayoutTests/animations/interpolation/webkit-column-count-interpolation.html
+++ b/LayoutTests/animations/interpolation/webkit-column-count-interpolation.html
@@ -29,13 +29,13 @@ assertInterpolation({
from: '',
to: '5',
}, [
- {at: -0.4, is: '11'},
- {at: -0.2, is: '10'},
+ {at: -0.4, is: '10'},
+ {at: -0.2, is: '9'},
{at: 0, is: '9'},
{at: 0.2, is: '8'},
{at: 0.4, is: '7'},
- {at: 0.6, is: '7'},
- {at: 0.8, is: '6'},
+ {at: 0.6, is: '6'},
+ {at: 0.8, is: '5'},
{at: 1, is: '5'},
{at: 1.2, is: '4'},
]);
@@ -54,12 +54,12 @@ assertInterpolation({
{at: -0.4, is: '1'},
{at: -0.2, is: '1'},
{at: 0, is: '1'},
- {at: 0.2, is: '2'},
- {at: 0.4, is: '3'},
+ {at: 0.2, is: '1'},
+ {at: 0.4, is: '2'},
{at: 0.6, is: '3'},
{at: 0.8, is: '4'},
{at: 1, is: '5'},
- {at: 1.2, is: '6'},
+ {at: 1.2, is: '5'},
]);
assertNoInterpolation({

Powered by Google App Engine
This is Rietveld 408576698