| Index: third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| index d9664b3399fbed53d9659a3b460900be7c827ec3..ef7de5aa65bbf057a301189510231036a82a5ec0 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| @@ -374,9 +374,9 @@ PaintLayerPainter::PaintResult PaintLayerPainter::paintLayerContents(GraphicsCon
|
| ASSERT(objectPaintProperties && objectPaintProperties->localBorderBoxProperties());
|
| PaintChunkProperties properties(context.getPaintController().currentPaintChunkProperties());
|
| auto& localBorderBoxProperties = *objectPaintProperties->localBorderBoxProperties();
|
| - properties.transform = localBorderBoxProperties.transform;
|
| - properties.clip = localBorderBoxProperties.clip;
|
| - properties.effect = localBorderBoxProperties.effect;
|
| + properties.transform = localBorderBoxProperties.propertyTreeState.transform;
|
| + properties.clip = localBorderBoxProperties.propertyTreeState.clip;
|
| + properties.effect = localBorderBoxProperties.propertyTreeState.effect;
|
| properties.backfaceHidden = m_paintLayer.layoutObject()->hasHiddenBackface();
|
| scopedPaintChunkProperties.emplace(context.getPaintController(), properties);
|
| }
|
|
|