Chromium Code Reviews| Index: Source/core/dom/Document.cpp |
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp |
| index a068fbaa7edf738b5c1e7cb87a95bda7d0d02e44..abafc78ee3b684edd3f20f1578543231c39c089e 100644 |
| --- a/Source/core/dom/Document.cpp |
| +++ b/Source/core/dom/Document.cpp |
| @@ -1681,7 +1681,8 @@ 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()) { |
| + // for (Node* n = firstChild(); n; n = n->nextSibling()) { |
|
ojan
2013/06/03 23:03:29
derp.
|
| if (!n->isElementNode()) |
| continue; |
| Element* element = toElement(n); |