| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index ed7babe5851c47882c3bba047892c1e6bfa06431..e4dbee9d9494015e774495a2097b10fe579e7b46 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -700,7 +700,8 @@ bool ComputedStyle::diffNeedsFullLayout(const ComputedStyle& other) const
|
| || rareNonInheritedData->m_alignSelf != other.rareNonInheritedData->m_alignSelf
|
| || rareNonInheritedData->m_justifyContent != other.rareNonInheritedData->m_justifyContent
|
| || rareNonInheritedData->m_justifyItems != other.rareNonInheritedData->m_justifyItems
|
| - || rareNonInheritedData->m_justifySelf != other.rareNonInheritedData->m_justifySelf)
|
| + || rareNonInheritedData->m_justifySelf != other.rareNonInheritedData->m_justifySelf
|
| + || rareNonInheritedData->m_contain != other.rareNonInheritedData->m_contain)
|
| return true;
|
|
|
| if (!RuntimeEnabledFeatures::cssBoxReflectFilterEnabled() && !rareNonInheritedData->reflectionDataEquivalent(*other.rareNonInheritedData.get()))
|
|
|