| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGTextPath.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGTextPath.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGTextPath.cpp
|
| index a806329e1ac8040848d5b58400ff41705170e903..3dd74c0c2ba04a47c22942ab984e0b0fe126c089 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGTextPath.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGTextPath.cpp
|
| @@ -78,7 +78,8 @@ std::unique_ptr<PathPositionMapper> LayoutSVGTextPath::layoutPath() const {
|
| // system for the current 'text' element, including any adjustments to the
|
| // current user coordinate system due to a possible transform attribute on the
|
| // current 'text' element. http://www.w3.org/TR/SVG/text.html#TextPathElement
|
| - pathData.transform(pathElement.calculateAnimatedLocalTransform());
|
| + pathData.transform(
|
| + pathElement.calculateTransform(SVGElement::IncludeMotionTransform));
|
|
|
| return PathPositionMapper::create(pathData);
|
| }
|
|
|