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

Unified Diff: Source/core/svg/SVGFEPointLightElement.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/SVGFEPointLightElement.cpp
diff --git a/Source/core/svg/SVGFEPointLightElement.cpp b/Source/core/svg/SVGFEPointLightElement.cpp
index 5c3475f5a66b5df1b1754ae4b85a2d94e67698da..d98c1fcdbd6394a26a7e7bc788c2ef25c35294e1 100644
--- a/Source/core/svg/SVGFEPointLightElement.cpp
+++ b/Source/core/svg/SVGFEPointLightElement.cpp
@@ -40,7 +40,7 @@ PassRefPtr<SVGFEPointLightElement> SVGFEPointLightElement::create(const Qualifie
PassRefPtr<LightSource> SVGFEPointLightElement::lightSource() const
{
- return PointLightSource::create(FloatPoint3D(x(), y(), z()));
+ return PointLightSource::create(FloatPoint3D(xCurrentValue(), yCurrentValue(), zCurrentValue()));
}
}

Powered by Google App Engine
This is Rietveld 408576698