| Index: Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| diff --git a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| index 1c93c211dd4ab250c0f780d4bc0323f4319cae9f..8ad48a09d565c3ebdd05d603d58d77d5d5ca86a8 100644
|
| --- a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| +++ b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| @@ -405,10 +405,10 @@ static inline void writeSVGInlineTextBox(TextStream& ts, SVGInlineTextBox* textB
|
| if (fragments.isEmpty())
|
| return;
|
|
|
| - LayoutSVGInlineText& textRenderer = toLayoutSVGInlineText(textBox->renderer());
|
| + LayoutSVGInlineText& textRenderer = toLayoutSVGInlineText(textBox->layoutObject());
|
|
|
| const SVGLayoutStyle& svgStyle = textRenderer.style()->svgStyle();
|
| - String text = textBox->renderer().text();
|
| + String text = textBox->layoutObject().text();
|
|
|
| unsigned fragmentsSize = fragments.size();
|
| for (unsigned i = 0; i < fragmentsSize; ++i) {
|
|
|