| 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 4494a8547728b0ab2f294566a011778a6e218ee9..4c749ded6b961cde52e888ce72bece2406fdfd4e 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -812,8 +812,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
|
| m_inheritedData.m_rtlOrdering != other.m_inheritedData.m_rtlOrdering ||
|
| textAlign() != other.textAlign() ||
|
| textTransform() != other.textTransform() ||
|
| - m_inheritedData.m_direction != other.m_inheritedData.m_direction ||
|
| - whiteSpace() != other.whiteSpace() ||
|
| + direction() != other.direction() || whiteSpace() != other.whiteSpace() ||
|
| m_inheritedData.m_writingMode != other.m_inheritedData.m_writingMode)
|
| return true;
|
|
|
|
|