Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Unified Diff: Source/core/html/HTMLLinkElement.cpp

Issue 485633002: Remove HTMLImports runtime flag (status=stable) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove HTMLImports runtime flag (status=stable) Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/html/HTMLLinkElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLLinkElement.cpp
diff --git a/Source/core/html/HTMLLinkElement.cpp b/Source/core/html/HTMLLinkElement.cpp
index 36c1d8d8d1b6c76fa755af831023315715d24047..673e3f1de50ef18e754912686c30a60c8cee59fc 100644
--- a/Source/core/html/HTMLLinkElement.cpp
+++ b/Source/core/html/HTMLLinkElement.cpp
@@ -209,7 +209,7 @@ LinkResource* HTMLLinkElement::linkResourceToProcess()
}
if (!m_link) {
- if (m_relAttribute.isImport() && RuntimeEnabledFeatures::htmlImportsEnabled()) {
+ if (m_relAttribute.isImport()) {
m_link = LinkImport::create(this);
} else if (m_relAttribute.isManifest() && RuntimeEnabledFeatures::manifestEnabled()) {
m_link = LinkManifest::create(this);
« no previous file with comments | « no previous file | Source/core/html/HTMLLinkElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698