| 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 12457460b7b20b3f17c50c8fe861b380e63af822..14b69808064f39d603d3a00775b54f99bfcfdb58 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| @@ -117,8 +117,8 @@ void HTMLIFrameElement::parseAttribute(
|
| } else if (name == referrerpolicyAttr) {
|
| m_referrerPolicy = ReferrerPolicyDefault;
|
| if (!value.isNull()) {
|
| - SecurityPolicy::referrerPolicyFromStringWithLegacyKeywords(
|
| - value, &m_referrerPolicy);
|
| + SecurityPolicy::referrerPolicyFromString(
|
| + value, SupportReferrerPolicyLegacyKeywords, &m_referrerPolicy);
|
| UseCounter::count(document(),
|
| UseCounter::HTMLIFrameElementReferrerPolicyAttribute);
|
| }
|
|
|