| Index: third_party/WebKit/Source/core/layout/shapes/RectangleShape.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/shapes/RectangleShape.cpp b/third_party/WebKit/Source/core/layout/shapes/RectangleShape.cpp
|
| index 4e6fb896d94269febf458e9c1caa4d8ed55e88c5..4df93c032e76928d8a210881d25fb1df72c326a6 100644
|
| --- a/third_party/WebKit/Source/core/layout/shapes/RectangleShape.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/shapes/RectangleShape.cpp
|
| @@ -90,8 +90,9 @@ void RectangleShape::buildDisplayPaths(DisplayPaths& paths) const {
|
| paths.shape.addRoundedRect(m_bounds, m_radii);
|
| if (shapeMargin())
|
| paths.marginShape.addRoundedRect(
|
| - shapeMarginBounds(), FloatSize(m_radii.width() + shapeMargin(),
|
| - m_radii.height() + shapeMargin()));
|
| + shapeMarginBounds(),
|
| + FloatSize(m_radii.width() + shapeMargin(),
|
| + m_radii.height() + shapeMargin()));
|
| }
|
|
|
| } // namespace blink
|
|
|