| Index: third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/BoxPainter.cpp b/third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| index 8e4236f5cb195962ffd3b022ca1fc9ecaff40e42..e2de12608db30c4013a5b3eeb43588d582b93373 100644
|
| --- a/third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/BoxPainter.cpp
|
| @@ -360,8 +360,8 @@ void BoxPainter::paintFillLayer(const LayoutBoxModelObject& obj, const PaintInfo
|
| clipToBorder.emplace(obj, paintInfo, rect, border, ApplyToContext);
|
| }
|
|
|
| - int bLeft = includeLeftEdge ? obj.borderLeft() : 0;
|
| - int bRight = includeRightEdge ? obj.borderRight() : 0;
|
| + int bLeft = includeLeftEdge ? obj.borderLeft().floor() : 0;
|
| + int bRight = includeRightEdge ? obj.borderRight().floor() : 0;
|
| LayoutUnit pLeft = includeLeftEdge ? obj.paddingLeft() : LayoutUnit();
|
| LayoutUnit pRight = includeRightEdge ? obj.paddingRight() : LayoutUnit();
|
|
|
|
|