| Index: Source/core/rendering/RenderTreeAsText.cpp
|
| diff --git a/Source/core/rendering/RenderTreeAsText.cpp b/Source/core/rendering/RenderTreeAsText.cpp
|
| index 6fb01b89623dd2a2645ff5a37939fe8f78a3816d..c4a6b9564cecb6da1de7fdac81db2e9ed009078d 100644
|
| --- a/Source/core/rendering/RenderTreeAsText.cpp
|
| +++ b/Source/core/rendering/RenderTreeAsText.cpp
|
| @@ -175,9 +175,6 @@ void RenderTreeAsText::writeRenderObject(TextStream& ts, const RenderObject& o,
|
|
|
| if (o.node()) {
|
| String tagName = getTagName(o.node());
|
| - // FIXME: Temporary hack to make tests pass by simulating the old generated content output.
|
| - if (o.isPseudoElement() || (o.parent() && o.parent()->isPseudoElement()))
|
| - tagName = emptyAtom;
|
| if (!tagName.isEmpty()) {
|
| ts << " {" << tagName << "}";
|
| // flag empty or unstyled AppleStyleSpan because we never
|
|
|