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

Unified Diff: third_party/WebKit/LayoutTests/animations/interpolation/border-width-interpolation.html

Issue 1412103005: Make sure line widths in the range of 0px and 1px are rounded up to 1px for visibility. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/border-width-interpolation.html
diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/border-width-interpolation.html b/third_party/WebKit/LayoutTests/animations/interpolation/border-width-interpolation.html
index a774e3aa201bb152da68014971ce3e83f2257a69..1826c0ce80d407c4a1af6a66cd894354f6a14231 100644
--- a/third_party/WebKit/LayoutTests/animations/interpolation/border-width-interpolation.html
+++ b/third_party/WebKit/LayoutTests/animations/interpolation/border-width-interpolation.html
@@ -105,7 +105,7 @@ assertInterpolation({
to: '13px'
}, [
{at: -2, is: '0px'}, // CSS border-left-width can't be negative.
- {at: -0.3, is: '0px'},
+ {at: -0.25, is: '1px'},
{at: 0, is: '3px'},
{at: 0.3, is: '6px'},
{at: 0.6, is: '9px'},

Powered by Google App Engine
This is Rietveld 408576698