| 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 070c725a0c9e87d02d45c3e2a7c9ac80c7f56136..d4c9618495a3c5afb9609fa29bab44b0ff207768 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -856,8 +856,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
|
| other.borderRightStyle() == BorderStyleHidden)))
|
| return true;
|
| } else if (display() == EDisplay::ListItem) {
|
| - if (m_inheritedData.m_listStyleType !=
|
| - other.m_inheritedData.m_listStyleType ||
|
| + if (listStyleType() != other.listStyleType() ||
|
| listStylePosition() != other.listStylePosition())
|
| return true;
|
| }
|
|
|