| Index: Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| diff --git a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| index 56b6b95dcac28d4ff37e6de3c11f78c6f7d27f54..fc95d87436976dbb784edc9ad9b0c084dcc876b3 100644
|
| --- a/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| +++ b/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| @@ -399,10 +399,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) {
|
|
|