| Index: third_party/WebKit/WebCore/svg/SVGAnimateMotionElement.cpp
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/svg/SVGAnimateMotionElement.cpp (revision 9391)
|
| +++ third_party/WebKit/WebCore/svg/SVGAnimateMotionElement.cpp (working copy)
|
| @@ -150,7 +150,7 @@
|
| TransformationMatrix* transform = target->supplementalTransform();
|
| if (!transform)
|
| return;
|
| - transform->reset();
|
| + transform->makeIdentity();
|
| }
|
|
|
| bool SVGAnimateMotionElement::calculateFromAndToValues(const String& fromString, const String& toString)
|
| @@ -179,7 +179,7 @@
|
| return;
|
|
|
| if (!isAdditive())
|
| - transform->reset();
|
| + transform->makeIdentity();
|
|
|
| // FIXME: Implement accumulate.
|
|
|
|
|