| Index: third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| index ad142ad36facd204141b206d998cfc65bcab2f5f..b59c01e11452fe82b3ed4817e6e332d61711ac14 100644
|
| --- a/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/compositing/CompositedLayerMapping.cpp
|
| @@ -2899,8 +2899,9 @@ void CompositedLayerMapping::doPaintTask(
|
| IntRect dirtyRect(clip);
|
| dirtyRect.move(offset);
|
|
|
| - if (paintLayerFlags & (PaintLayerPaintingOverflowContents |
|
| - PaintLayerPaintingAncestorClippingMaskPhase)) {
|
| + if (paintLayerFlags &
|
| + (PaintLayerPaintingOverflowContents |
|
| + PaintLayerPaintingAncestorClippingMaskPhase)) {
|
| dirtyRect.move(
|
| roundedIntSize(paintInfo.paintLayer->subpixelAccumulation()));
|
| } else {
|
| @@ -2951,8 +2952,9 @@ void CompositedLayerMapping::doPaintTask(
|
| PaintLayerPainter(*paintInfo.paintLayer)
|
| .paint(context, paintingInfo, paintLayerFlags);
|
| context.getPaintController().endItem<EndClipDisplayItem>(
|
| - graphicsLayer, DisplayItem::clipTypeToEndClipType(
|
| - DisplayItem::kClipLayerOverflowControls));
|
| + graphicsLayer,
|
| + DisplayItem::clipTypeToEndClipType(
|
| + DisplayItem::kClipLayerOverflowControls));
|
| }
|
| }
|
|
|
|
|