| Index: Source/core/html/LinkRelAttribute.cpp
|
| diff --git a/Source/core/html/LinkRelAttribute.cpp b/Source/core/html/LinkRelAttribute.cpp
|
| index ef4bcd768168140a84638d5925036d03f61fd0ad..58067337bac2c6414c7b8623c3bedf5314796f6f 100644
|
| --- a/Source/core/html/LinkRelAttribute.cpp
|
| +++ b/Source/core/html/LinkRelAttribute.cpp
|
| @@ -46,6 +46,7 @@ LinkRelAttribute::LinkRelAttribute(const String& rel)
|
| , m_isLinkPrerender(false)
|
| , m_isLinkNext(false)
|
| , m_isImport(false)
|
| + , m_isManifest(false)
|
| {
|
| if (rel.isEmpty())
|
| return;
|
| @@ -84,6 +85,8 @@ LinkRelAttribute::LinkRelAttribute(const String& rel)
|
| } else if (equalIgnoringCase(*it, "apple-touch-icon-precomposed")) {
|
| if (RuntimeEnabledFeatures::touchIconLoadingEnabled())
|
| m_iconType = TouchPrecomposedIcon;
|
| + } else if (equalIgnoringCase(*it, "manifest")) {
|
| + m_isManifest = true;
|
| }
|
| }
|
| }
|
|
|