| Index: third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| index 01d00741d16fcdc363881b099e6a17a37ede7703..c5ba080d627aa0e127cdb465ef0e9ed995d7596f 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
|
| @@ -327,9 +327,8 @@ static void writeStyle(TextStream& ts, const LayoutObject& object) {
|
|
|
| static TextStream& writePositionAndStyle(TextStream& ts,
|
| const LayoutObject& object) {
|
| - ts << " "
|
| - << enclosingIntRect(
|
| - const_cast<LayoutObject&>(object).absoluteClippedOverflowRect());
|
| + ts << " " << enclosingIntRect(
|
| + const_cast<LayoutObject&>(object).absoluteVisualRect());
|
| writeStyle(ts, object);
|
| return ts;
|
| }
|
|
|