| Index: Source/core/rendering/svg/RenderSVGShape.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGShape.h b/Source/core/rendering/svg/RenderSVGShape.h
|
| index 3fa24bf9487c95bb67f97e13d2f327c2b2e2106e..2a6c12cfe141e43c6ed6895dfdee019c36baabc1 100644
|
| --- a/Source/core/rendering/svg/RenderSVGShape.h
|
| +++ b/Source/core/rendering/svg/RenderSVGShape.h
|
| @@ -89,6 +89,7 @@ protected:
|
|
|
| FloatRect m_fillBoundingBox;
|
| FloatRect m_strokeBoundingBox;
|
| + FloatRect m_hitTestStrokeBoundingBox;
|
|
|
| private:
|
| // Hit-detection separated for the fill and the stroke
|
| @@ -107,8 +108,9 @@ private:
|
| virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) override final;
|
|
|
| virtual FloatRect strokeBoundingBox() const override final { return m_strokeBoundingBox; }
|
| + FloatRect hitTestStrokeBoundingBox() const { return m_hitTestStrokeBoundingBox; }
|
| FloatRect calculateObjectBoundingBox() const;
|
| - FloatRect calculateStrokeBoundingBox() const;
|
| + FloatRect calculateHitTestStrokeBoundingBox() const;
|
| void updatePaintInvalidationBoundingBox();
|
| void updateLocalTransform();
|
|
|
|
|