Index: Source/core/editing/htmlediting.cpp |
diff --git a/Source/core/editing/htmlediting.cpp b/Source/core/editing/htmlediting.cpp |
index 0a06d6caa0d5f80840defeb21fb4026fbc996591..55a4c5496bc97e003101cb6f3028a35d9c10fc42 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()) |