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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2473743003: Call Element::rebuildLayoutTree from Document::updateStyle directly (Closed)
Patch Set: FirstLetterPseudoElements are not being created Created 4 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
(...skipping 2027 matching lines...) Expand 10 before | Expand all | Expand 10 after
2038 StyleResolver& resolver = ensureStyleResolver(); 2038 StyleResolver& resolver = ensureStyleResolver();
2039 2039
2040 bool shouldRecordStats; 2040 bool shouldRecordStats;
2041 TRACE_EVENT_CATEGORY_GROUP_ENABLED("blink,blink_style", &shouldRecordStats); 2041 TRACE_EVENT_CATEGORY_GROUP_ENABLED("blink,blink_style", &shouldRecordStats);
2042 styleEngine().setStatsEnabled(shouldRecordStats); 2042 styleEngine().setStatsEnabled(shouldRecordStats);
2043 2043
2044 if (Element* documentElement = this->documentElement()) { 2044 if (Element* documentElement = this->documentElement()) {
2045 inheritHtmlAndBodyElementStyles(change); 2045 inheritHtmlAndBodyElementStyles(change);
2046 if (documentElement->shouldCallRecalcStyle(change)) 2046 if (documentElement->shouldCallRecalcStyle(change))
2047 documentElement->recalcStyle(change); 2047 documentElement->recalcStyle(change);
2048 DCHECK(!documentElement->needsStyleRecalc());
2049 DCHECK(!documentElement->childNeedsStyleRecalc());
2050 if (documentElement->needsReattachLayoutTree() ||
2051 documentElement->childNeedsReattachLayoutTree())
2052 documentElement->rebuildLayoutTree();
2048 } 2053 }
2049 2054
2050 view()->recalcOverflowAfterStyleChange(); 2055 view()->recalcOverflowAfterStyleChange();
2051 2056
2052 // Only retain the HashMap for the duration of StyleRecalc and 2057 // Only retain the HashMap for the duration of StyleRecalc and
2053 // LayoutTreeConstruction. 2058 // LayoutTreeConstruction.
2054 m_styleReattachDataMap.clear(); 2059 m_styleReattachDataMap.clear();
2055 clearChildNeedsStyleRecalc(); 2060 clearChildNeedsStyleRecalc();
2056 clearChildNeedsReattachLayoutTree(); 2061 clearChildNeedsReattachLayoutTree();
2057 2062
(...skipping 4524 matching lines...) Expand 10 before | Expand all | Expand 10 after
6582 } 6587 }
6583 6588
6584 void showLiveDocumentInstances() { 6589 void showLiveDocumentInstances() {
6585 WeakDocumentSet& set = liveDocumentSet(); 6590 WeakDocumentSet& set = liveDocumentSet();
6586 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6591 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6587 for (Document* document : set) 6592 for (Document* document : set)
6588 fprintf(stderr, "- Document %p URL: %s\n", document, 6593 fprintf(stderr, "- Document %p URL: %s\n", document,
6589 document->url().getString().utf8().data()); 6594 document->url().getString().utf8().data());
6590 } 6595 }
6591 #endif 6596 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698