| Index: Source/core/html/LinkRelAttribute.cpp
|
| diff --git a/Source/core/html/LinkRelAttribute.cpp b/Source/core/html/LinkRelAttribute.cpp
|
| index dca254aabc5719e2fa3800395543c7e735087d6e..91ba040155a4d5fd557c5159045a9c9eaa67362e 100644
|
| --- a/Source/core/html/LinkRelAttribute.cpp
|
| +++ b/Source/core/html/LinkRelAttribute.cpp
|
| @@ -45,6 +45,7 @@ LinkRelAttribute::LinkRelAttribute()
|
| , m_isLinkPrefetch(false)
|
| , m_isLinkSubresource(false)
|
| , m_isLinkPrerender(false)
|
| + , m_isLinkNext(false)
|
| , m_isImport(false)
|
| {
|
| }
|
| @@ -57,6 +58,7 @@ LinkRelAttribute::LinkRelAttribute(const String& rel)
|
| , m_isLinkPrefetch(false)
|
| , m_isLinkSubresource(false)
|
| , m_isLinkPrerender(false)
|
| + , m_isLinkNext(false)
|
| , m_isImport(false)
|
| {
|
| if (equalIgnoringCase(rel, "stylesheet")) {
|
| @@ -98,6 +100,8 @@ LinkRelAttribute::LinkRelAttribute(const String& rel)
|
| m_isLinkSubresource = true;
|
| } else if (equalIgnoringCase(*it, "prerender")) {
|
| m_isLinkPrerender = true;
|
| + } else if (equalIgnoringCase(*it, "next")) {
|
| + m_isLinkNext = true;
|
| } else if (equalIgnoringCase(*it, "apple-touch-icon")) {
|
| if (RuntimeEnabledFeatures::touchIconLoadingEnabled()) {
|
| m_iconType = TouchIcon;
|
|
|