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

Unified Diff: Source/core/dom/Document.cpp

Issue 23049008: Replace style sharing cousin list search with LRU (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ToT + Elliott's changes Created 7 years, 4 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
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index a5dddea9ff27a0d1ab8a4d19beb42ad0897e3fd2..f81d7d1b89fdb327f9308aa0841dccd016e2ad5b 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -1680,8 +1680,10 @@ void Document::recalcStyle(StyleChange change)
m_inStyleRecalc = false;
// Pseudo element removal and similar may only work with these flags still set. Reset them after the style recalc.
- if (m_styleResolver)
+ if (m_styleResolver) {
m_styleSheetCollection->resetCSSFeatureFlags(m_styleResolver->ruleFeatureSet());
+ m_styleResolver->clearStyleSharingList();
esprehn 2013/08/22 17:33:02 I think it'd make more sense to clear it at the st
+ }
if (frameView) {
frameView->resumeScheduledEvents();
@@ -1930,6 +1932,8 @@ void Document::detach(const AttachContext& context)
ContainerNode::detach(context);
unscheduleStyleRecalc();
+ if (m_styleResolver)
+ m_styleResolver->clearStyleSharingList();
esprehn 2013/08/22 17:33:02 Why doesn't this function just call clearStyleReso
if (render)
render->destroy();

Powered by Google App Engine
This is Rietveld 408576698