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

Unified Diff: Source/core/css/resolver/StyleResolver.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/css/navigationTransitions.css ('k') | Source/core/dom/Document.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/resolver/StyleResolver.cpp
diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
index 1d84bacaf6c88376f7580e695724a25b7b7100e1..da93d08289748958037b0fb46e0f0b186dcdd144 100644
--- a/Source/core/css/resolver/StyleResolver.cpp
+++ b/Source/core/css/resolver/StyleResolver.cpp
@@ -280,9 +280,6 @@ void StyleResolver::collectFeatures()
if (document().isViewSource())
m_features.add(defaultStyleSheets.defaultViewSourceStyle()->features());
- if (document().isTransitionDocument())
- m_features.add(defaultStyleSheets.defaultTransitionStyle()->features());
-
if (m_watchedSelectorsRules)
m_features.add(m_watchedSelectorsRules->features());
@@ -421,9 +418,6 @@ void StyleResolver::matchUARules(ElementRuleCollector& collector)
if (document().isViewSource())
matchRuleSet(collector, defaultStyleSheets.defaultViewSourceStyle());
- if (document().isTransitionDocument())
- matchRuleSet(collector, defaultStyleSheets.defaultTransitionStyle());
-
collector.setMatchingUARules(false);
}
« no previous file with comments | « Source/core/css/navigationTransitions.css ('k') | Source/core/dom/Document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698