| Index: Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| diff --git a/Source/core/layout/svg/line/SVGInlineFlowBox.cpp b/Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| index e3a3ab49c6f81367d3211726af97e0cbf8b0dbe1..d1b04b3960404a221be58e055ae3fb865a0729b4 100644
|
| --- a/Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| +++ b/Source/core/layout/svg/line/SVGInlineFlowBox.cpp
|
| @@ -33,9 +33,9 @@ void SVGInlineFlowBox::paint(const PaintInfo& paintInfo, const LayoutPoint& pain
|
| SVGInlineFlowBoxPainter(*this).paint(paintInfo, paintOffset);
|
| }
|
|
|
| -FloatRectWillBeLayoutRect SVGInlineFlowBox::calculateBoundaries() const
|
| +LayoutRect SVGInlineFlowBox::calculateBoundaries() const
|
| {
|
| - FloatRectWillBeLayoutRect childRect;
|
| + LayoutRect childRect;
|
| for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
|
| if (!child->isSVGInlineTextBox() && !child->isSVGInlineFlowBox())
|
| continue;
|
|
|