Title: [150880] trunk/Source/WebCore
Revision
150880
Author
[email protected]
Date
2013-05-29 03:20:40 -0700 (Wed, 29 May 2013)

Log Message

Fix dumb typo in r150879.

* editing/htmlediting.cpp:
(WebCore::nextLeafNode):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (150879 => 150880)


--- trunk/Source/WebCore/ChangeLog	2013-05-29 08:57:42 UTC (rev 150879)
+++ trunk/Source/WebCore/ChangeLog	2013-05-29 10:20:40 UTC (rev 150880)
@@ -1,5 +1,12 @@
 2013-05-29  Andreas Kling  <[email protected]>
 
+        Fix dumb typo in r150879.
+
+        * editing/htmlediting.cpp:
+        (WebCore::nextLeafNode):
+
+2013-05-29  Andreas Kling  <[email protected]>
+
         Move leaf Node traversal helpers to htmlediting.cpp
         <http://webkit.org/b/116940>
 

Modified: trunk/Source/WebCore/editing/htmlediting.cpp (150879 => 150880)


--- trunk/Source/WebCore/editing/htmlediting.cpp	2013-05-29 08:57:42 UTC (rev 150879)
+++ trunk/Source/WebCore/editing/htmlediting.cpp	2013-05-29 10:20:40 UTC (rev 150880)
@@ -843,7 +843,7 @@
 Node* nextLeafNode(const Node* node)
 {
     Node* n = nextNodeConsideringAtomicNodes(node);
-    while (node) {
+    while (n) {
         if (isAtomicNode(n))
             return n;
         n = nextNodeConsideringAtomicNodes(n);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to