| 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 409c0396259984ce2e5127b443b6faf09dbb8cb3..6c63c8b1c0070513cc2a8bd45ff696830e800a01 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
|
| @@ -103,7 +103,7 @@ void HTMLIFrameElement::parseAttribute(const QualifiedName& name, const AtomicSt
|
| } else if (name == sandboxAttr) {
|
| m_sandbox->setValue(value);
|
| UseCounter::count(document(), UseCounter::SandboxViaIFrame);
|
| - } else if (RuntimeEnabledFeatures::referrerPolicyAttributeEnabled() && name == referrerpolicyAttr) {
|
| + } else if (name == referrerpolicyAttr) {
|
| m_referrerPolicy = ReferrerPolicyDefault;
|
| if (!value.isNull())
|
| SecurityPolicy::referrerPolicyFromString(value, &m_referrerPolicy);
|
|
|