| Index: Source/core/rendering/svg/RenderSVGText.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGText.h b/Source/core/rendering/svg/RenderSVGText.h
|
| index 6598c45c814cf2e81a1d93449e5a63f49d6d504c..63d4031e8a81912b926aee71e30663cb9acd6c23 100644
|
| --- a/Source/core/rendering/svg/RenderSVGText.h
|
| +++ b/Source/core/rendering/svg/RenderSVGText.h
|
| @@ -60,7 +60,7 @@ public:
|
|
|
| private:
|
| virtual const char* renderName() const override { return "RenderSVGText"; }
|
| - virtual bool isSVGText() const override { return true; }
|
| + virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectSVGText || RenderSVGBlock::isOfType(type); }
|
|
|
| virtual void paint(PaintInfo&, const LayoutPoint&) override;
|
| virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) override;
|
|
|