| Index: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| index c5abafeced962ebdf8f4da75784b1ecd0c03ce32..e022e8a84501f01afb4ba306a574abc37eb805cd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| @@ -48,6 +48,7 @@
|
| #include "core/layout/line/InlineTextBox.h"
|
| #include "core/layout/svg/LayoutSVGGradientStop.h"
|
| #include "core/layout/svg/LayoutSVGImage.h"
|
| +#include "core/layout/svg/LayoutSVGInline.h"
|
| #include "core/layout/svg/LayoutSVGInlineText.h"
|
| #include "core/layout/svg/LayoutSVGRoot.h"
|
| #include "core/layout/svg/LayoutSVGShape.h"
|
| @@ -486,6 +487,10 @@ void write(TextStream& ts,
|
| writeSVGText(ts, toLayoutSVGText(o), indent);
|
| return;
|
| }
|
| + if (o.isSVGInline()) {
|
| + writeSVGInline(ts, toLayoutSVGInline(o), indent);
|
| + return;
|
| + }
|
| if (o.isSVGInlineText()) {
|
| writeSVGInlineText(ts, toLayoutSVGInlineText(o), indent);
|
| return;
|
|
|