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

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

Issue 1158433004: Remove Attr child nodes (making Attr a Node, not a ContainerNode) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address feedback Created 5 years, 7 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/Node.cpp
diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
index d6a648772a8c29a04822de6ac13616bf02be98d8..56fb995d78a7033954fdda8b5b547b0d8d05500c 100644
--- a/Source/core/dom/Node.cpp
+++ b/Source/core/dom/Node.cpp
@@ -518,9 +518,6 @@ void Node::normalize()
while (Node* firstChild = node->firstChild())
node = firstChild;
while (node) {
- if (node->isElementNode())
- toElement(node)->normalizeAttributes();
-
if (node == this)
break;

Powered by Google App Engine
This is Rietveld 408576698