| Index: third_party/WebKit/Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineFlowBox.cpp b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| index 08b9cc47615cf57c0a71e80f2a255a041ea99a92..3391424fadf1f2b4481127aee83a273b17b727b2 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| @@ -34,14 +34,4 @@ void SVGInlineFlowBox::paint(const PaintInfo& paintInfo,
|
| SVGInlineFlowBoxPainter(*this).paint(paintInfo, paintOffset);
|
| }
|
|
|
| -LayoutRect SVGInlineFlowBox::calculateBoundaries() const {
|
| - LayoutRect childRect;
|
| - for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
|
| - if (!child->isSVGInlineTextBox() && !child->isSVGInlineFlowBox())
|
| - continue;
|
| - childRect.unite(child->calculateBoundaries());
|
| - }
|
| - return childRect;
|
| -}
|
| -
|
| } // namespace blink
|
|
|