| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
 | 
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
 | 
| index 4c288f27022856e5c34084f85db3049cd26e1bbe..bc2cf3491eb41384e9d2d6daf8ff0eeeee6ab7a1 100644
 | 
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
 | 
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
 | 
| @@ -826,6 +826,7 @@ public:
 | 
|      bool hasVisualOverflowingEffect() const { return boxShadow() || hasBorderImageOutsets() || hasOutline(); }
 | 
|  
 | 
|      Containment contain() const { return static_cast<Containment>(rareNonInheritedData->m_contain); }
 | 
| +    bool containsPaint() const { return rareNonInheritedData->m_contain & ContainsPaint; }
 | 
|  
 | 
|      EBoxSizing boxSizing() const { return m_box->boxSizing(); }
 | 
|      EUserModify userModify() const { return static_cast<EUserModify>(rareInheritedData->userModify); }
 | 
| 
 |