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

Unified Diff: Source/core/svg/SVGCircleElement.cpp

Issue 19097005: Remove one SVG animated type special case from the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix the regressions Created 7 years, 5 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/SVGCircleElement.cpp
diff --git a/Source/core/svg/SVGCircleElement.cpp b/Source/core/svg/SVGCircleElement.cpp
index 761807bc080da35ba03e7659a7c572f0ab2e732b..3039498fba7c6ac2d1b87189badac1af733dfcc7 100644
--- a/Source/core/svg/SVGCircleElement.cpp
+++ b/Source/core/svg/SVGCircleElement.cpp
@@ -129,9 +129,9 @@ void SVGCircleElement::svgAttributeChanged(const QualifiedName& attrName)
bool SVGCircleElement::selfHasRelativeLengths() const
{
- return cx().isRelative()
- || cy().isRelative()
- || r().isRelative();
+ return cxCurrentValue().isRelative()
+ || cyCurrentValue().isRelative()
+ || rCurrentValue().isRelative();
}
RenderObject* SVGCircleElement::createRenderer(RenderStyle*)

Powered by Google App Engine
This is Rietveld 408576698