| Index: third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp b/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
|
| index 2a10759fcca6550e60e90851206b38a9f19992d1..21a318d92f1e98465391ebfd503b96e5100e4e43 100644
|
| --- a/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/FrameSetPainter.cpp
|
| @@ -69,11 +69,11 @@ static bool shouldPaintBorderAfter(const LayoutFrameSet::GridAxis& axis, size_t
|
|
|
| void FrameSetPainter::paintBorders(const PaintInfo& paintInfo, const LayoutPoint& adjustedPaintOffset)
|
| {
|
| - if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutFrameSet, paintInfo.phase, adjustedPaintOffset))
|
| + if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutFrameSet, paintInfo.phase))
|
| return;
|
|
|
| LayoutRect adjustedFrameRect(adjustedPaintOffset, m_layoutFrameSet.size());
|
| - LayoutObjectDrawingRecorder recorder(paintInfo.context, m_layoutFrameSet, paintInfo.phase, adjustedFrameRect, adjustedPaintOffset);
|
| + LayoutObjectDrawingRecorder recorder(paintInfo.context, m_layoutFrameSet, paintInfo.phase, adjustedFrameRect);
|
|
|
| LayoutUnit borderThickness(m_layoutFrameSet.frameSet()->border());
|
| if (!borderThickness)
|
|
|