| Index: Source/core/html/HTMLLinkElement.h
|
| diff --git a/Source/core/html/HTMLLinkElement.h b/Source/core/html/HTMLLinkElement.h
|
| index f8a7878b5901dc7f8b61f2d66c8538249763f58b..2426db5da65ac0068b6420cc490ebe729ec5826f 100644
|
| --- a/Source/core/html/HTMLLinkElement.h
|
| +++ b/Source/core/html/HTMLLinkElement.h
|
| @@ -30,6 +30,7 @@
|
| #include "core/fetch/ResourceOwner.h"
|
| #include "core/fetch/StyleSheetResource.h"
|
| #include "core/fetch/StyleSheetResourceClient.h"
|
| +#include "core/html/ClassList.h"
|
| #include "core/html/HTMLElement.h"
|
| #include "core/html/LinkRelAttribute.h"
|
| #include "core/html/LinkResource.h"
|
| @@ -121,6 +122,7 @@ public:
|
|
|
| KURL href() const;
|
| const AtomicString& rel() const;
|
| + DOMTokenList* relList() const;
|
| String media() const { return m_media; }
|
| String typeValue() const { return m_type; }
|
| const LinkRelAttribute& relAttribute() const { return m_relAttribute; }
|
| @@ -207,6 +209,7 @@ private:
|
| RefPtrWillBeMember<DOMSettableTokenList> m_sizes;
|
| Vector<IntSize> m_iconSizes;
|
| LinkRelAttribute m_relAttribute;
|
| + OwnPtrWillBeMember<ClassList> m_relList;
|
|
|
| bool m_createdByParser;
|
| bool m_isInShadowTree;
|
|
|