| 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 31ac24aa956778860b7b74b2639ba2d1d366c9d9..611b59e0ded7235bccd91f43366e5269799a7885 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -705,7 +705,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_snapWidth != other.rareNonInheritedData->m_snapWidth)
|
| return true;
|
| }
|
|
|
|
|