| Index: Source/core/rendering/svg/RenderSVGForeignObject.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGForeignObject.cpp b/Source/core/rendering/svg/RenderSVGForeignObject.cpp
|
| index 2df500345d9695ee461842bc02b50e956dd60afc..ef56fcab986f43a295b48e98c13f7abf4c9ec173 100644
|
| --- a/Source/core/rendering/svg/RenderSVGForeignObject.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGForeignObject.cpp
|
| @@ -85,16 +85,6 @@ void RenderSVGForeignObject::paint(PaintInfo& paintInfo, const LayoutPoint&)
|
| }
|
| }
|
|
|
| -LayoutRect RenderSVGForeignObject::clippedOverflowRectForRepaint(const RenderLayerModelObject* repaintContainer) const
|
| -{
|
| - return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
|
| -}
|
| -
|
| -void RenderSVGForeignObject::computeFloatRectForRepaint(const RenderLayerModelObject* repaintContainer, FloatRect& repaintRect, bool fixed) const
|
| -{
|
| - SVGRenderSupport::computeFloatRectForRepaint(this, repaintContainer, repaintRect, fixed);
|
| -}
|
| -
|
| const AffineTransform& RenderSVGForeignObject::localToParentTransform() const
|
| {
|
| m_localToParentTransform = localTransform();
|
| @@ -184,20 +174,4 @@ bool RenderSVGForeignObject::nodeAtFloatPoint(const HitTestRequest& request, Hit
|
| || RenderBlock::nodeAtPoint(request, result, hitTestLocation, LayoutPoint(), HitTestChildBlockBackgrounds);
|
| }
|
|
|
| -bool RenderSVGForeignObject::nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation&, const LayoutPoint&, HitTestAction)
|
| -{
|
| - ASSERT_NOT_REACHED();
|
| - return false;
|
| -}
|
| -
|
| -void RenderSVGForeignObject::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
|
| -{
|
| - SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
|
| -}
|
| -
|
| -const RenderObject* RenderSVGForeignObject::pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap& geometryMap) const
|
| -{
|
| - return SVGRenderSupport::pushMappingToContainer(this, ancestorToStopAt, geometryMap);
|
| -}
|
| -
|
| }
|
|
|