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

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

Issue 146833003: Convert remaining RenderSVG* nodes to RenderObject::isChildAllowed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix 'switch' condition. Created 6 years, 11 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 68b1a4029cd0b01518f49acdb7d7d0d6460b8192..6707906d526aef2cdee9e5ff1d97fcdabd4e6a78 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,11 @@ 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;
+ }
return RenderInline::isChildAllowed(child, style);
}
« 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