| Index: Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| diff --git a/Source/core/layout/svg/SVGTextChunkBuilder.cpp b/Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| index 591dafb4d00788d27f2d7dffa874811e5b9529b6..eda52e0615d5511d45335cca2ccba1914f87ae54 100644
|
| --- a/Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| +++ b/Source/core/layout/svg/SVGTextChunkBuilder.cpp
|
| @@ -85,9 +85,9 @@ void SVGTextChunkBuilder::addTextChunk(Vector<SVGInlineTextBox*>& lineLayoutBoxe
|
| SVGInlineTextBox* textBox = lineLayoutBoxes[boxStart];
|
| ASSERT(textBox);
|
|
|
| - LayoutSVGInlineText& textRenderer = toLayoutSVGInlineText(textBox->renderer());
|
| + LayoutSVGInlineText& textRenderer = toLayoutSVGInlineText(textBox->layoutObject());
|
|
|
| - const LayoutStyle& style = toLayoutSVGInlineText(textBox->renderer()).styleRef();
|
| + const LayoutStyle& style = toLayoutSVGInlineText(textBox->layoutObject()).styleRef();
|
|
|
| const SVGLayoutStyle& svgStyle = style.svgStyle();
|
|
|
|
|