| 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 a2bafc6f2adafa3fd6f91c1eb6efe6e485715521..003a46782e907aa66aaef98e7e6da7e66e9f7fd4 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);
|
| }
|
|
|