| Index: third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp b/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
|
| index 7d84659985f4f467418dcc5bed68fe6d6e7341a9..4ddfa545df0780478fba37d79c56373615390324 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
|
| @@ -127,10 +127,13 @@ LayoutRect PaintInvalidator::mapLocalRectToVisualRectInBacking(
|
| context.m_treeBuilderContext.current.transform,
|
| context.m_treeBuilderContext.current.clip, nullptr);
|
|
|
| - FloatRect floatRect(rect);
|
| + FloatClipRect floatRect((FloatRect(rect)));
|
| + LOG(ERROR) << "rect before: " << floatRect.rect().toString();
|
| GeometryMapper::sourceToDestinationVisualRect(
|
| currentTreeState, *containerContentsProperties, floatRect);
|
| - result = LayoutRect(floatRect);
|
| + LOG(ERROR) << "wat: " << floatRect.rect().toString()
|
| + << " object: " << object.debugName();
|
| + result = LayoutRect(floatRect.rect());
|
| }
|
|
|
| // Convert the result to the container's contents space.
|
|
|