| 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 bb643b8a6acd005ed073c81455f7018bff2e121c..a806329e1ac8040848d5b58400ff41705170e903 100644 | 
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGTextPath.cpp | 
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGTextPath.cpp | 
| @@ -73,11 +73,11 @@ std::unique_ptr<PathPositionMapper> LayoutSVGTextPath::layoutPath() const { | 
| if (pathData.isEmpty()) | 
| return nullptr; | 
|  | 
| -  // Spec:  The transform attribute on the referenced 'path' element represents a | 
| -  // supplemental transformation relative to the current user coordinate 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 | 
| +  // Spec:  The transform attribute on the referenced 'path' element represents | 
| +  // a supplemental transformation relative to the current user coordinate | 
| +  // 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()); | 
|  | 
| return PathPositionMapper::create(pathData); | 
|  |