| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| index 1366c87c9cc334ef93eb94dbcfe1594dd52ae986..de8cef99b3a6b524afd32bd29dd5b6cdbeb224b3 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| @@ -401,13 +401,12 @@ void LayoutSVGInlineText::computeNewScaledFontForStyle(
|
| scaledFont.update(document.styleEngine().fontSelector());
|
| }
|
|
|
| -LayoutRect LayoutSVGInlineText::absoluteClippedOverflowRect() const {
|
| - return parent()->absoluteClippedOverflowRect();
|
| +LayoutRect LayoutSVGInlineText::absoluteVisualRect() const {
|
| + return parent()->absoluteVisualRect();
|
| }
|
|
|
| -FloatRect LayoutSVGInlineText::paintInvalidationRectInLocalSVGCoordinates()
|
| - const {
|
| - return parent()->paintInvalidationRectInLocalSVGCoordinates();
|
| +FloatRect LayoutSVGInlineText::visualRectInLocalSVGCoordinates() const {
|
| + return parent()->visualRectInLocalSVGCoordinates();
|
| }
|
|
|
| PassRefPtr<StringImpl> LayoutSVGInlineText::originalText() const {
|
|
|