[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:21:57 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6e0618f7e3cb683f6d7c96ec66ef577190c7c6ca
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jun 27 21:05:20 2002 +0000

    	Fixed DOM tree viewer.
    
            * WebView.subproj/IFDOMNode.mm: (-[IFDOMNode initWithDOMNode:DOM::]):
    	A typo got in here somehow, leading to an infinite loop.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1462 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 6b1ed58..5b38810 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,12 @@
 2002-06-27  Darin Adler  <darin at apple.com>
 
+	Fixed DOM tree viewer.
+
+        * WebView.subproj/IFDOMNode.mm: (-[IFDOMNode initWithDOMNode:DOM::]):
+	A typo got in here somehow, leading to an infinite loop.
+
+2002-06-27  Darin Adler  <darin at apple.com>
+
         - fixed 2973212 -- bad arg string != nil in _IF_URLWithString
 
         * WebView.subproj/IFWebDataSourcePrivate.mm:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 6b1ed58..5b38810 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,12 @@
 2002-06-27  Darin Adler  <darin at apple.com>
 
+	Fixed DOM tree viewer.
+
+        * WebView.subproj/IFDOMNode.mm: (-[IFDOMNode initWithDOMNode:DOM::]):
+	A typo got in here somehow, leading to an infinite loop.
+
+2002-06-27  Darin Adler  <darin at apple.com>
+
         - fixed 2973212 -- bad arg string != nil in _IF_URLWithString
 
         * WebView.subproj/IFWebDataSourcePrivate.mm:
diff --git a/WebKit/WebView.subproj/IFDOMNode.mm b/WebKit/WebView.subproj/IFDOMNode.mm
index 8550602..30dc4f9 100644
--- a/WebKit/WebView.subproj/IFDOMNode.mm
+++ b/WebKit/WebView.subproj/IFDOMNode.mm
@@ -28,7 +28,7 @@
     value = [node->nodeValue().string().getNSString() copy];
     source = [node->recursive_toHTML(1).getNSString() copy];
    
-    for (DOM::NodeImpl *child = node->firstChild(); child; child->nextSibling())
+    for (DOM::NodeImpl *child = node->firstChild(); child; child = child->nextSibling())
         [collectChildren addObject:[[[IFDOMNode alloc] initWithDOMNode: child] autorelease]];
     
     children = [collectChildren copy];
diff --git a/WebKit/WebView.subproj/WebDOMNode.m b/WebKit/WebView.subproj/WebDOMNode.m
index 8550602..30dc4f9 100644
--- a/WebKit/WebView.subproj/WebDOMNode.m
+++ b/WebKit/WebView.subproj/WebDOMNode.m
@@ -28,7 +28,7 @@
     value = [node->nodeValue().string().getNSString() copy];
     source = [node->recursive_toHTML(1).getNSString() copy];
    
-    for (DOM::NodeImpl *child = node->firstChild(); child; child->nextSibling())
+    for (DOM::NodeImpl *child = node->firstChild(); child; child = child->nextSibling())
         [collectChildren addObject:[[[IFDOMNode alloc] initWithDOMNode: child] autorelease]];
     
     children = [collectChildren copy];
diff --git a/WebKit/WebView.subproj/WebDebugDOMNode.m b/WebKit/WebView.subproj/WebDebugDOMNode.m
index 8550602..30dc4f9 100644
--- a/WebKit/WebView.subproj/WebDebugDOMNode.m
+++ b/WebKit/WebView.subproj/WebDebugDOMNode.m
@@ -28,7 +28,7 @@
     value = [node->nodeValue().string().getNSString() copy];
     source = [node->recursive_toHTML(1).getNSString() copy];
    
-    for (DOM::NodeImpl *child = node->firstChild(); child; child->nextSibling())
+    for (DOM::NodeImpl *child = node->firstChild(); child; child = child->nextSibling())
         [collectChildren addObject:[[[IFDOMNode alloc] initWithDOMNode: child] autorelease]];
     
     children = [collectChildren copy];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list