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

Unified Diff: Source/core/rendering/svg/RenderSVGInline.cpp

Issue 147213004: Revert of Convert remaining RenderSVG* nodes to RenderObject::isChildAllowed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase; Include r166238. Created 6 years, 10 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 | « no previous file | Source/core/rendering/svg/RenderSVGModelObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/RenderSVGInline.cpp
diff --git a/Source/core/rendering/svg/RenderSVGInline.cpp b/Source/core/rendering/svg/RenderSVGInline.cpp
index 51d884076255eb29491d563b09d896bdf9befaf1..7c2ec4ae8b5c6948e93cd560d92162d06e34e053 100644
--- a/Source/core/rendering/svg/RenderSVGInline.cpp
+++ b/Source/core/rendering/svg/RenderSVGInline.cpp
@@ -23,7 +23,6 @@
#include "core/rendering/svg/RenderSVGInline.h"
-#include "SVGNames.h"
#include "core/rendering/svg/RenderSVGText.h"
#include "core/rendering/svg/SVGInlineFlowBox.h"
#include "core/rendering/svg/SVGRenderSupport.h"
@@ -36,12 +35,6 @@ bool RenderSVGInline::isChildAllowed(RenderObject* child, RenderStyle* style) co
if (SVGRenderSupport::isEmptySVGInlineText(child))
return false;
- if (node()->hasTagName(SVGNames::aTag)) {
- // Disallow direct descendant 'a'.
- if (child->node()->hasTagName(SVGNames::aTag))
- return false;
- }
-
if (!child->isSVGInline() && !child->isSVGInlineText())
return false;
« no previous file with comments | « no previous file | Source/core/rendering/svg/RenderSVGModelObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698