Index: Source/core/dom/TreeScopeStyleSheetCollection.cpp |
diff --git a/Source/core/dom/TreeScopeStyleSheetCollection.cpp b/Source/core/dom/TreeScopeStyleSheetCollection.cpp |
index b5e680fab6b3db92861c2758e7727c07b0e8768d..0c4c24e27cef0f86a4e87a7610a914a73e5ed232 100644 |
--- a/Source/core/dom/TreeScopeStyleSheetCollection.cpp |
+++ b/Source/core/dom/TreeScopeStyleSheetCollection.cpp |
@@ -176,14 +176,14 @@ void TreeScopeStyleSheetCollection::clearMediaQueryRuleSetStyleSheets() |
} |
} |
-void TreeScopeStyleSheetCollection::enableExitTransitionStylesheets() |
+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)->enableIfExitTransitionStyle(); |
+ toHTMLLinkElement(node)->setEnabledIfExitTransitionStyle(enabled); |
} |
} |