| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
|
| index e523e35d9c68ee4ada10d2ef03c9a976d9f4d258..cb8752dfb0119036930112ff8c25291632843d67 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
|
| @@ -246,7 +246,7 @@ void LayoutSVGShape::paint(const PaintInfo& paintInfo,
|
| void LayoutSVGShape::addOutlineRects(Vector<LayoutRect>& rects,
|
| const LayoutPoint&,
|
| IncludeBlockVisualOverflowOrNot) const {
|
| - rects.append(LayoutRect(visualRectInLocalSVGCoordinates()));
|
| + rects.push_back(LayoutRect(visualRectInLocalSVGCoordinates()));
|
| }
|
|
|
| bool LayoutSVGShape::nodeAtFloatPoint(HitTestResult& result,
|
|
|