Index: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp |
index e92dd0ad09aa2ab7e182df6c1b72ae79bfe5cfe3..bca1b587e13fba7cf00c95b1a7731e2fa35a9634 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp |
@@ -42,6 +42,7 @@ |
#include "core/page/FrameTree.h" |
#include "core/svg/SVGAngleTearOff.h" |
#include "core/svg/SVGDocumentExtensions.h" |
+#include "core/svg/SVGMatrixTearOff.h" |
#include "core/svg/SVGNumberTearOff.h" |
#include "core/svg/SVGPreserveAspectRatio.h" |
#include "core/svg/SVGRectTearOff.h" |
@@ -423,7 +424,7 @@ SVGTransformTearOff* SVGSVGElement::createSVGTransform() |
SVGTransformTearOff* SVGSVGElement::createSVGTransformFromMatrix(SVGMatrixTearOff* matrix) |
{ |
- return SVGTransformTearOff::create(SVGTransform::create(matrix->value()), 0, PropertyIsNotAnimVal); |
+ return SVGTransformTearOff::create(matrix); |
} |
AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGElement::CTMScope mode) const |