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

Unified Diff: Source/core/svg/SVGEllipseElement.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/SVGEllipseElement.cpp
diff --git a/Source/core/svg/SVGEllipseElement.cpp b/Source/core/svg/SVGEllipseElement.cpp
index 26d1f8dfab953b6de23fbf7ac83928ed3d52468c..cda30d5b2c16ecad001baf6113b14dc02b630f82 100644
--- a/Source/core/svg/SVGEllipseElement.cpp
+++ b/Source/core/svg/SVGEllipseElement.cpp
@@ -136,10 +136,10 @@ void SVGEllipseElement::svgAttributeChanged(const QualifiedName& attrName)
bool SVGEllipseElement::selfHasRelativeLengths() const
{
- return cx().isRelative()
- || cy().isRelative()
- || rx().isRelative()
- || ry().isRelative();
+ return cxCurrentValue().isRelative()
+ || cyCurrentValue().isRelative()
+ || rxCurrentValue().isRelative()
+ || ryCurrentValue().isRelative();
}
RenderObject* SVGEllipseElement::createRenderer(RenderStyle*)

Powered by Google App Engine
This is Rietveld 408576698