Index: Source/core/dom/StyleEngine.cpp |
diff --git a/Source/core/dom/StyleEngine.cpp b/Source/core/dom/StyleEngine.cpp |
index 95ad29c10c4b9ba51d77e1d5a8396d3944139ce7..a62b97012d27fab8de1d4fc7314cc6fdb304856b 100644 |
--- a/Source/core/dom/StyleEngine.cpp |
+++ b/Source/core/dom/StyleEngine.cpp |
@@ -424,14 +424,14 @@ void StyleEngine::appendActiveAuthorStyleSheets() |
ASSERT(isMaster()); |
m_resolver->setBuildScopedStyleTreeInDocumentOrder(true); |
- m_resolver->appendAuthorStyleSheets(0, m_documentStyleSheetCollection.activeAuthorStyleSheets()); |
+ m_resolver->appendAuthorStyleSheets(m_documentStyleSheetCollection.activeAuthorStyleSheets()); |
TreeScopeSet::iterator begin = m_activeTreeScopes.begin(); |
TreeScopeSet::iterator end = m_activeTreeScopes.end(); |
for (TreeScopeSet::iterator it = begin; it != end; ++it) { |
if (TreeScopeStyleSheetCollection* collection = m_styleSheetCollectionMap.get(*it)) { |
m_resolver->setBuildScopedStyleTreeInDocumentOrder(!collection->scopingNodesForStyleScoped()); |
- m_resolver->appendAuthorStyleSheets(0, collection->activeAuthorStyleSheets()); |
+ m_resolver->appendAuthorStyleSheets(collection->activeAuthorStyleSheets()); |
} |
} |
m_resolver->finishAppendAuthorStyleSheets(); |