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

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

Issue 145333003: Convert remaining RenderSVG* nodes to RenderObject::isChildAllowed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove some instances of childShouldCreateRenderer. 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 a3045042311ca77758ce48b732d8e7b077fa8ada..64f6b4d66accd8193cc09e9e46557f9f35ff74c9 100644
--- a/Source/core/rendering/svg/RenderSVGInline.cpp
+++ b/Source/core/rendering/svg/RenderSVGInline.cpp
@@ -23,6 +23,7 @@
#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"
@@ -35,6 +36,12 @@ bool RenderSVGInline::isChildAllowed(RenderObject* child, RenderStyle* style) co
if (child->isText())
return SVGRenderSupport::isRenderableTextNode(child);
+ 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