Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1092)

Unified Diff: Source/core/rendering/RenderDeprecatedFlexibleBox.cpp

Issue 645623003: Remove hack to suppress pseudo element names. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/RenderBlock.cpp ('k') | Source/core/rendering/RenderInline.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderDeprecatedFlexibleBox.cpp
diff --git a/Source/core/rendering/RenderDeprecatedFlexibleBox.cpp b/Source/core/rendering/RenderDeprecatedFlexibleBox.cpp
index f27ae6e6eb2142fb2b4d532e619e416ad790aca7..3e9a7b93c072de8ec839631cf1d483f9a093e5c7 100644
--- a/Source/core/rendering/RenderDeprecatedFlexibleBox.cpp
+++ b/Source/core/rendering/RenderDeprecatedFlexibleBox.cpp
@@ -1027,17 +1027,6 @@ const char* RenderDeprecatedFlexibleBox::renderName() const
return "RenderDeprecatedFlexibleBox (floating)";
if (isOutOfFlowPositioned())
return "RenderDeprecatedFlexibleBox (positioned)";
- // FIXME: Cleanup isPseudoElement duplication with other renderName methods.
- // crbug.com/415653
- if (style() && isPseudoElement()) {
- if (style()->styleType() == BEFORE)
- return "RenderDeprecatedFlexibleBox (pseudo:before)";
- if (style()->styleType() == AFTER)
- return "RenderDeprecatedFlexibleBox (pseudo:after)";
- if (style()->styleType() == BACKDROP)
- return "RenderDeprecatedFlexibleBox (pseudo:backdrop)";
- ASSERT_NOT_REACHED();
- }
if (isAnonymous())
return "RenderDeprecatedFlexibleBox (generated)";
if (isRelPositioned())
« no previous file with comments | « Source/core/rendering/RenderBlock.cpp ('k') | Source/core/rendering/RenderInline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698