| Index: Source/core/layout/svg/LayoutSVGTSpan.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGTSpan.cpp b/Source/core/layout/svg/LayoutSVGTSpan.cpp
|
| similarity index 89%
|
| rename from Source/core/rendering/svg/RenderSVGTSpan.cpp
|
| rename to Source/core/layout/svg/LayoutSVGTSpan.cpp
|
| index 14eb18c33b63dc522b22b2cd3afa8ba5936d4b2a..0d05faf5a983997a69acc79f0434750684095ec2 100644
|
| --- a/Source/core/rendering/svg/RenderSVGTSpan.cpp
|
| +++ b/Source/core/layout/svg/LayoutSVGTSpan.cpp
|
| @@ -21,18 +21,18 @@
|
| */
|
|
|
| #include "config.h"
|
| -#include "core/rendering/svg/RenderSVGTSpan.h"
|
| +#include "core/layout/svg/LayoutSVGTSpan.h"
|
|
|
| #include "core/layout/svg/SVGLayoutSupport.h"
|
|
|
| namespace blink {
|
|
|
| -RenderSVGTSpan::RenderSVGTSpan(Element* element)
|
| +LayoutSVGTSpan::LayoutSVGTSpan(Element* element)
|
| : LayoutSVGInline(element)
|
| {
|
| }
|
|
|
| -bool RenderSVGTSpan::isChildAllowed(LayoutObject* child, const LayoutStyle&) const
|
| +bool LayoutSVGTSpan::isChildAllowed(LayoutObject* child, const LayoutStyle&) const
|
| {
|
| // Always allow text (except empty textnodes and <br>).
|
| if (child->isText())
|
|
|