| Index: Source/core/rendering/RenderFlowThread.cpp
|
| diff --git a/Source/core/rendering/RenderFlowThread.cpp b/Source/core/rendering/RenderFlowThread.cpp
|
| index 3e5d50b407adec499af2fc2387dbefd4071faf29..40c5e5687e3a6a7b0429b674442a982a53c8c9b9 100644
|
| --- a/Source/core/rendering/RenderFlowThread.cpp
|
| +++ b/Source/core/rendering/RenderFlowThread.cpp
|
| @@ -293,17 +293,17 @@ void RenderFlowThread::paintFlowThreadPortionInRegion(PaintInfo& paintInfo, Rend
|
| IntRect regionClippingRect = pixelSnappedIntRect(computeRegionClippingRect(adjustedPaintOffset + portionLocation, flowThreadPortionRect, flowThreadPortionOverflowRect));
|
|
|
| PaintInfo info(paintInfo);
|
| - info.rect().intersect(regionClippingRect);
|
| + info.rect.intersect(regionClippingRect);
|
|
|
| - if (!info.rect().isEmpty()) {
|
| + if (!info.rect.isEmpty()) {
|
| context->save();
|
|
|
| context->clip(regionClippingRect);
|
|
|
| context->translate(adjustedPaintOffset.x(), adjustedPaintOffset.y());
|
| - info.rect().moveBy(-adjustedPaintOffset);
|
| + info.rect.moveBy(-adjustedPaintOffset);
|
|
|
| - layer()->paint(context, info.rect(), 0, 0, region, RenderLayer::PaintLayerTemporaryClipRects);
|
| + layer()->paint(context, info.rect, 0, 0, region, RenderLayer::PaintLayerTemporaryClipRects);
|
|
|
| context->restore();
|
| }
|
|
|