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

Unified Diff: Source/core/svg/SVGLineElement.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/SVGLineElement.cpp
diff --git a/Source/core/svg/SVGLineElement.cpp b/Source/core/svg/SVGLineElement.cpp
index 6f50d201ea16eae65841b0aef3b29b6b9206d45a..715f8affdfa94ee14657b287f2dace1e64d8c91e 100644
--- a/Source/core/svg/SVGLineElement.cpp
+++ b/Source/core/svg/SVGLineElement.cpp
@@ -135,10 +135,10 @@ void SVGLineElement::svgAttributeChanged(const QualifiedName& attrName)
bool SVGLineElement::selfHasRelativeLengths() const
{
- return x1().isRelative()
- || y1().isRelative()
- || x2().isRelative()
- || y2().isRelative();
+ return x1CurrentValue().isRelative()
+ || y1CurrentValue().isRelative()
+ || x2CurrentValue().isRelative()
+ || y2CurrentValue().isRelative();
}
}

Powered by Google App Engine
This is Rietveld 408576698