Index: Source/core/dom/TreeScopeStyleSheetCollection.cpp |
diff --git a/Source/core/dom/TreeScopeStyleSheetCollection.cpp b/Source/core/dom/TreeScopeStyleSheetCollection.cpp |
index 493aa037c54caf2136c0816cb467ae2b407b4b0e..93a42764f127816bf550ff57c50f3a480f8540ba 100644 |
--- a/Source/core/dom/TreeScopeStyleSheetCollection.cpp |
+++ b/Source/core/dom/TreeScopeStyleSheetCollection.cpp |
@@ -176,17 +176,6 @@ void TreeScopeStyleSheetCollection::clearMediaQueryRuleSetStyleSheets() |
} |
} |
-void TreeScopeStyleSheetCollection::setExitTransitionStyleshetsEnabled(bool enabled) |
-{ |
- DocumentOrderedList::iterator begin = m_styleSheetCandidateNodes.begin(); |
- DocumentOrderedList::iterator end = m_styleSheetCandidateNodes.end(); |
- for (DocumentOrderedList::iterator it = begin; it != end; ++it) { |
- Node* node = *it; |
- if (isHTMLLinkElement(*node)) |
- toHTMLLinkElement(node)->setEnabledIfExitTransitionStyle(enabled); |
- } |
-} |
- |
static bool styleSheetsUseRemUnits(const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet>>& sheets) |
{ |
for (unsigned i = 0; i < sheets.size(); ++i) { |