| Index: Source/core/rendering/style/RenderStyle.cpp
|
| diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp
|
| index 4f875ad5ca4190c0011198add9e4d02855d1d57d..0e5d89db44a9df45c4719f2287afed1ba85ec1cb 100644
|
| --- a/Source/core/rendering/style/RenderStyle.cpp
|
| +++ b/Source/core/rendering/style/RenderStyle.cpp
|
| @@ -669,8 +669,8 @@ bool RenderStyle::diffNeedsPaintInvalidationObject(const RenderStyle& other) con
|
| || rareNonInheritedData->m_objectFit != other.rareNonInheritedData->m_objectFit
|
| || rareNonInheritedData->m_objectPosition != other.rareNonInheritedData->m_objectPosition
|
| || !rareNonInheritedData->shadowDataEquivalent(*other.rareNonInheritedData.get())
|
| - || !dataEquivalent(rareNonInheritedData->m_shapeOutside, other.rareNonInheritedData->m_shapeOutside)
|
| - || !dataEquivalent(rareNonInheritedData->m_clipPath, other.rareNonInheritedData->m_clipPath))
|
| + || !rareNonInheritedData->shapeOutsideDataEquivalent(*other.rareNonInheritedData.get())
|
| + || !rareNonInheritedData->clipPathDataEquivalent(*other.rareNonInheritedData.get()))
|
| return true;
|
| }
|
|
|
|
|