Index: Source/core/dom/shadow/ShadowRoot.h |
diff --git a/Source/core/dom/shadow/ShadowRoot.h b/Source/core/dom/shadow/ShadowRoot.h |
index 690212042606f04bff31985cc4e6609f997134be..b2cc4b44bb9eb35464c8ce9ef5dae29608d6438b 100644 |
--- a/Source/core/dom/shadow/ShadowRoot.h |
+++ b/Source/core/dom/shadow/ShadowRoot.h |
@@ -124,6 +124,9 @@ public: |
StyleSheetList* styleSheets(); |
+ void setDelegatesFocus(bool flag) { m_delegatesFocus = flag; } |
+ bool delegatesFocus() const { return m_delegatesFocus; } |
+ |
DECLARE_VIRTUAL_TRACE(); |
private: |
@@ -155,6 +158,7 @@ private: |
unsigned m_type : 1; |
unsigned m_registeredWithParentShadowRoot : 1; |
unsigned m_descendantInsertionPointsIsValid : 1; |
+ unsigned m_delegatesFocus : 1; |
}; |
inline Element* ShadowRoot::activeElement() const |