| Index: third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| index 86f95d4515935500e6d51a7c09d9b3f1b2ea6d82..3701006c9fe5ce2bd149e314f54818832022ef47 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| @@ -110,7 +110,7 @@ void HTMLIFrameElement::parseAttribute(const QualifiedName& name, const AtomicSt
|
| } else if (name == referrerpolicyAttr) {
|
| m_referrerPolicy = ReferrerPolicyDefault;
|
| if (!value.isNull())
|
| - SecurityPolicy::referrerPolicyFromString(value, &m_referrerPolicy);
|
| + SecurityPolicy::referrerPolicyFromStringWithLegacyKeywords(value, &m_referrerPolicy);
|
| } else if (name == allowfullscreenAttr) {
|
| bool oldAllowFullscreen = m_allowFullscreen;
|
| m_allowFullscreen = !value.isNull();
|
|
|