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

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

Issue 1140153006: Remove Navigation Transitions from Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed layout tests. Created 5 years, 7 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 | « Source/core/html/LinkRelAttribute.h ('k') | Source/core/loader/DocumentLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/LinkRelAttribute.cpp
diff --git a/Source/core/html/LinkRelAttribute.cpp b/Source/core/html/LinkRelAttribute.cpp
index 8df7495f47c60d03e61d771c710d03b0e9bef701..042bf8a638ed55ae43fd77601026cc7bb5cfd1fa 100644
--- a/Source/core/html/LinkRelAttribute.cpp
+++ b/Source/core/html/LinkRelAttribute.cpp
@@ -49,7 +49,6 @@ LinkRelAttribute::LinkRelAttribute(const String& rel)
, m_isLinkNext(false)
, m_isImport(false)
, m_isManifest(false)
- , m_isTransitionExitingStylesheet(false)
, m_isDefaultPresentation(false)
{
if (rel.isEmpty())
@@ -96,9 +95,6 @@ LinkRelAttribute::LinkRelAttribute(const String& rel)
m_iconType = TouchPrecomposedIcon;
} else if (equalIgnoringCase(linkType, "manifest")) {
m_isManifest = true;
- } else if (equalIgnoringCase(rel, "transition-exiting-stylesheet")) {
- if (RuntimeEnabledFeatures::navigationTransitionsEnabled())
- m_isTransitionExitingStylesheet = true;
} else if (equalIgnoringCase(linkType, "default-presentation")) {
if (RuntimeEnabledFeatures::presentationEnabled())
m_isDefaultPresentation = true;
« no previous file with comments | « Source/core/html/LinkRelAttribute.h ('k') | Source/core/loader/DocumentLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698