| 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 2bf7b17d7a3d6638375195d0ecf00fe76173e8fe..6d63084f51785918924ececa2bc27aa7c79eaff7 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -822,6 +822,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); }
|
|
|