| Index: third_party/WebKit/Source/core/paint/FramePainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/FramePainter.cpp b/third_party/WebKit/Source/core/paint/FramePainter.cpp
|
| index de5bcce7099c055250e5c803659230b1c3188578..969468ff05ec35e83512aec0265abb3afa64dbce 100644
|
| --- a/third_party/WebKit/Source/core/paint/FramePainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/FramePainter.cpp
|
| @@ -54,7 +54,7 @@ void FramePainter::paint(GraphicsContext& context, const GlobalPaintFlags global
|
| properties.transform = transform;
|
| if (clip)
|
| properties.clip = clip;
|
| - scopedPaintChunkProperties.emplace(context.getPaintController(), properties);
|
| + scopedPaintChunkProperties.emplace(context.getPaintController(), *frameView().layoutView(), properties);
|
| }
|
| }
|
|
|
| @@ -78,7 +78,7 @@ void FramePainter::paint(GraphicsContext& context, const GlobalPaintFlags global
|
| if (TransformPaintPropertyNode* transform = m_frameView->preTranslation()) {
|
| PaintChunkProperties properties(context.getPaintController().currentPaintChunkProperties());
|
| properties.transform = transform;
|
| - scopedPaintChunkProperties.emplace(context.getPaintController(), properties);
|
| + scopedPaintChunkProperties.emplace(context.getPaintController(), *frameView().layoutView(), properties);
|
| }
|
| }
|
|
|
|
|