| Index: Source/core/rendering/svg/RenderSVGModelObject.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGModelObject.h b/Source/core/rendering/svg/RenderSVGModelObject.h
|
| index 688ec365618e4d8eed239295b41fcb439879bce8..e70a2d0fee1d2cc5a403e31fcab5773965bdb153 100644
|
| --- a/Source/core/rendering/svg/RenderSVGModelObject.h
|
| +++ b/Source/core/rendering/svg/RenderSVGModelObject.h
|
| @@ -62,7 +62,7 @@ public:
|
|
|
| SVGElement* element() const { return toSVGElement(RenderObject::node()); }
|
|
|
| - virtual bool isSVG() const override final { return true; }
|
| + virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectSVG || RenderObject::isOfType(type); }
|
|
|
| protected:
|
| virtual void addLayerHitTestRects(LayerHitTestRects&, const RenderLayer* currentCompositedLayer, const LayoutPoint& layerOffset, const LayoutRect& containerRect) const override final;
|
|
|