| Index: Source/core/layout/LayoutObject.cpp
|
| diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
|
| index 3dd686cb068a9ce983e6add2fe71399aa2017f8a..a591d33a245580eee37ff4b442bf514f94b151c1 100644
|
| --- a/Source/core/layout/LayoutObject.cpp
|
| +++ b/Source/core/layout/LayoutObject.cpp
|
| @@ -986,10 +986,10 @@ IntRect LayoutObject::absoluteBoundingBoxRectIgnoringTransforms() const
|
| if (!n)
|
| return IntRect();
|
|
|
| - LayoutRect result = rects[0];
|
| + IntRect result = rects[0];
|
| for (size_t i = 1; i < n; ++i)
|
| result.unite(rects[i]);
|
| - return pixelSnappedIntRect(result);
|
| + return result;
|
| }
|
|
|
| IntRect LayoutObject::absoluteFocusRingBoundingBoxRect() const
|
|
|