Index: third_party/WebKit/Source/core/html/HTMLLinkElement.h |
diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.h b/third_party/WebKit/Source/core/html/HTMLLinkElement.h |
index fa3643d6fd88b57767c7bfaaf0e74b9a2b2695b3..f6d5338c41e043e633c18956650027ffa7c4b849 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLLinkElement.h |
+++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.h |
@@ -143,6 +143,7 @@ public: |
String asValue() const { return m_as; } |
const LinkRelAttribute& relAttribute() const { return m_relAttribute; } |
DOMTokenList& relList() const { return static_cast<DOMTokenList&>(*m_relList); } |
+ String scope() const { return m_scope; } |
const AtomicString& type() const; |
@@ -227,6 +228,7 @@ private: |
Vector<IntSize> m_iconSizes; |
RawPtrWillBeMember<RelList> m_relList; |
LinkRelAttribute m_relAttribute; |
+ String m_scope; |
bool m_createdByParser; |
bool m_isInShadowTree; |