| 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 aedf11027a24dc5cfa9a9215552689f78ead0496..dcd144d8130fbb10ea1bcb02e87cd7ea26da97e8 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()))
|
|
|