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

Unified Diff: Source/core/svg/SVGRectElement.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/SVGRectElement.cpp
diff --git a/Source/core/svg/SVGRectElement.cpp b/Source/core/svg/SVGRectElement.cpp
index b00d3df0a4cb4c04b5dfc82a1a2bf855e5e0cb35..8d01fcc84dbe21e0b58ef7723f4a74355b249056 100644
--- a/Source/core/svg/SVGRectElement.cpp
+++ b/Source/core/svg/SVGRectElement.cpp
@@ -150,12 +150,12 @@ void SVGRectElement::svgAttributeChanged(const QualifiedName& attrName)
bool SVGRectElement::selfHasRelativeLengths() const
{
- return x().isRelative()
- || y().isRelative()
- || width().isRelative()
- || height().isRelative()
- || rx().isRelative()
- || ry().isRelative();
+ return xCurrentValue().isRelative()
+ || yCurrentValue().isRelative()
+ || widthCurrentValue().isRelative()
+ || heightCurrentValue().isRelative()
+ || rxCurrentValue().isRelative()
+ || ryCurrentValue().isRelative();
}
RenderObject* SVGRectElement::createRenderer(RenderStyle*)

Powered by Google App Engine
This is Rietveld 408576698