Index: Source/core/editing/htmlediting.cpp |
diff --git a/Source/core/editing/htmlediting.cpp b/Source/core/editing/htmlediting.cpp |
index fbd399dd2eea8690e31726151f52181b2c5b6bed..ee4786333c4f23bc3db9fa19a2e65460ee1296ca 100644 |
--- a/Source/core/editing/htmlediting.cpp |
+++ b/Source/core/editing/htmlediting.cpp |
@@ -605,7 +605,7 @@ static bool hasARenderedDescendant(Node* node, Node* excludedNode) |
{ |
for (Node* n = node->firstChild(); n;) { |
if (n == excludedNode) { |
- n = NodeTraversal::nextSkippingChildren(n, node); |
+ n = NodeTraversal::nextSkippingChildren(*n, node); |
continue; |
} |
if (n->renderer()) |