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 4c7a98b658a89b8fbee81dcd5cfb5c2e6ce31c4a..d6ca78c673d2dbc90ffd12b73b6268f80dbcb1f6 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h |
@@ -846,6 +846,7 @@ public: |
Containment contain() const { return static_cast<Containment>(rareNonInheritedData->m_contain); } |
bool containsPaint() const { return rareNonInheritedData->m_contain & ContainsPaint; } |
bool containsStyle() const { return rareNonInheritedData->m_contain & ContainsStyle; } |
+ bool containsLayout() const { return rareNonInheritedData->m_contain & ContainsLayout; } |
EBoxSizing boxSizing() const { return m_box->boxSizing(); } |
EUserModify userModify() const { return static_cast<EUserModify>(rareInheritedData->userModify); } |