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

Unified Diff: Source/core/svg/SVGTextPathElement.h

Issue 143263011: Convert SVG <text> and descendants to use RenderObject::isChildAllowed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
Index: Source/core/svg/SVGTextPathElement.h
diff --git a/Source/core/svg/SVGTextPathElement.h b/Source/core/svg/SVGTextPathElement.h
index c45bbcf8b1a2106be3d5f60c245a2f30fdfff640..b7ba83392273e985899b6e170e44d8d8e4b6e3e9 100644
--- a/Source/core/svg/SVGTextPathElement.h
+++ b/Source/core/svg/SVGTextPathElement.h
@@ -129,7 +129,7 @@ private:
virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
- virtual bool childShouldCreateRenderer(const Node& child) const OVERRIDE;
+ virtual bool childShouldCreateRenderer(const Node& child) const OVERRIDE { return true; }
virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
virtual bool selfHasRelativeLengths() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698