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

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

Issue 15871005: Avoid N^2 walk placing renderers when building the render tree (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reversing the snapshotting logic to fix a bug, and updating test expectations. Created 7 years, 6 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 933e39f58659d1bf940fcef5f4baaaca39a57c26..d83ee91c10b64b93b3be18a5322a9204e72ecc67 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -1671,7 +1671,7 @@ void Document::recalcStyle(StyleChange change)
renderer()->setStyle(documentStyle.release());
}
- for (Node* n = firstChild(); n; n = n->nextSibling()) {
+ for (Node* n = lastChild(); n; n = n->previousSibling()) {
if (!n->isElementNode())
continue;
Element* element = toElement(n);

Powered by Google App Engine
This is Rietveld 408576698