| Index: Source/core/rendering/svg/RenderSVGText.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGText.cpp b/Source/core/rendering/svg/RenderSVGText.cpp
|
| index 42f8f87a1377d4f03904562af1829dce6dc33c3e..5f2d22f5745e5ee2ee2f9ebb1a80dce46132f55c 100644
|
| --- a/Source/core/rendering/svg/RenderSVGText.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGText.cpp
|
| @@ -93,11 +93,6 @@ const RenderSVGText* RenderSVGText::locateRenderSVGTextAncestor(const RenderObje
|
| return toRenderSVGText(start);
|
| }
|
|
|
| -LayoutRect RenderSVGText::clippedOverflowRectForRepaint(const RenderLayerModelObject* repaintContainer) const
|
| -{
|
| - return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
|
| -}
|
| -
|
| void RenderSVGText::computeRectForRepaint(const RenderLayerModelObject* repaintContainer, LayoutRect& rect, bool fixed) const
|
| {
|
| FloatRect repaintRect = rect;
|
| @@ -105,21 +100,6 @@ void RenderSVGText::computeRectForRepaint(const RenderLayerModelObject* repaintC
|
| rect = enclosingLayoutRect(repaintRect);
|
| }
|
|
|
| -void RenderSVGText::computeFloatRectForRepaint(const RenderLayerModelObject* repaintContainer, FloatRect& repaintRect, bool fixed) const
|
| -{
|
| - SVGRenderSupport::computeFloatRectForRepaint(this, repaintContainer, repaintRect, fixed);
|
| -}
|
| -
|
| -void RenderSVGText::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
|
| -{
|
| - SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
|
| -}
|
| -
|
| -const RenderObject* RenderSVGText::pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap& geometryMap) const
|
| -{
|
| - return SVGRenderSupport::pushMappingToContainer(this, ancestorToStopAt, geometryMap);
|
| -}
|
| -
|
| static inline void collectLayoutAttributes(RenderObject* text, Vector<SVGTextLayoutAttributes*>& attributes)
|
| {
|
| for (RenderObject* descendant = text; descendant; descendant = descendant->nextInPreOrder(text)) {
|
| @@ -467,12 +447,6 @@ bool RenderSVGText::nodeAtFloatPoint(const HitTestRequest& request, HitTestResul
|
| return false;
|
| }
|
|
|
| -bool RenderSVGText::nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation&, const LayoutPoint&, HitTestAction)
|
| -{
|
| - ASSERT_NOT_REACHED();
|
| - return false;
|
| -}
|
| -
|
| PositionWithAffinity RenderSVGText::positionForPoint(const LayoutPoint& pointInContents)
|
| {
|
| RootInlineBox* rootBox = firstRootBox();
|
|
|