| 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 4a7e19975a0dd0ec91583850d9788587bb995f55..564c3ef874beff3f2591da87b91f64937824744c 100644
 | 
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
 | 
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
 | 
| @@ -948,8 +948,7 @@ bool ComputedStyle::diffNeedsPaintInvalidationSubtree(
 | 
|  bool ComputedStyle::diffNeedsPaintInvalidationObject(
 | 
|      const ComputedStyle& other) const {
 | 
|    if (visibility() != other.visibility() ||
 | 
| -      m_inheritedData.m_printColorAdjust !=
 | 
| -          other.m_inheritedData.m_printColorAdjust ||
 | 
| +      printColorAdjust() != other.printColorAdjust() ||
 | 
|        m_inheritedData.m_insideLink != other.m_inheritedData.m_insideLink ||
 | 
|        !m_surround->border.visuallyEqual(other.m_surround->border) ||
 | 
|        *m_background != *other.m_background)
 | 
| 
 |