| Index: Source/core/layout/compositing/CompositingReasonFinder.cpp | 
| diff --git a/Source/core/layout/compositing/CompositingReasonFinder.cpp b/Source/core/layout/compositing/CompositingReasonFinder.cpp | 
| index 9d25f0ec5dbfd88b91839b23d1f48cbdfb4ddc2c..2ee8a745cad1a0f6daf29e6f0eaa79050ac09f2b 100644 | 
| --- a/Source/core/layout/compositing/CompositingReasonFinder.cpp | 
| +++ b/Source/core/layout/compositing/CompositingReasonFinder.cpp | 
| @@ -143,7 +143,7 @@ bool CompositingReasonFinder::requiresCompositingForTransform(LayoutObject* layo | 
| { | 
| // Note that we ask the layoutObject if it has a transform, because the style may have transforms, | 
| // but the layoutObject may be an inline that doesn't support them. | 
| -    return layoutObject->hasTransformRelatedProperty() && layoutObject->style()->transform().has3DOperation(); | 
| +    return layoutObject->hasTransformRelatedProperty() && layoutObject->style()->has3DTransform(); | 
| } | 
|  | 
| CompositingReasons CompositingReasonFinder::nonStyleDeterminedDirectReasons(const DeprecatedPaintLayer* layer) const | 
|  |