| Index: third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| index 4b3890451c3955028d38f7151ad5f03ea2d9cfde..67bbb1b98f2125059836dff5e11fcf60cee9d833 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| @@ -486,6 +486,9 @@
|
|
|
| bool LayoutView::mapToVisualRectInAncestorSpace(const LayoutBoxModelObject* ancestor, LayoutRect& rect, MapCoordinatesFlags mode, VisualRectFlags visualRectFlags) const
|
| {
|
| + if (document().printing())
|
| + return true;
|
| +
|
| // Convert the rect into the physical coordinates space of this LayoutView.
|
| flipForWritingMode(rect);
|
|
|
|
|