Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
index c4fa5142ec77c39c7e38232bd56de6de39d41e17..f3cf24c766e60a4ca722721658e89c26dc70d669 100644 |
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp |
@@ -344,8 +344,9 @@ PositionWithAffinity LayoutSVGText::positionForPoint( |
LayoutPoint(clippedPointInContents.x(), closestBox->y())); |
} |
-void LayoutSVGText::absoluteQuads(Vector<FloatQuad>& quads) const { |
- quads.append(localToAbsoluteQuad(strokeBoundingBox())); |
+void LayoutSVGText::absoluteQuads(Vector<FloatQuad>& quads, |
+ MapCoordinatesFlags mode) const { |
+ quads.append(localToAbsoluteQuad(strokeBoundingBox(), mode)); |
} |
void LayoutSVGText::paint(const PaintInfo& paintInfo, |