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

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:03:24 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 07c921f4e581bd04647477dd9ad570b222dc9214
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 19 02:03:49 2002 +0000

    	Fix my <konqblock> regression on ign.com.
    
            * khtml/html/htmlparser.cpp:
            (KHTMLParser::insertNode):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2743 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 7b7f09c..a3a4b1b 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-11-18  David Hyatt  <hyatt at apple.com>
+
+	Fix my <konqblock> regression on ign.com.
+	
+        * khtml/html/htmlparser.cpp:
+        (KHTMLParser::insertNode):
+
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
         * force-js-clean-timestamp: Rebuild for JSC changes.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 7b7f09c..a3a4b1b 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-11-18  David Hyatt  <hyatt at apple.com>
+
+	Fix my <konqblock> regression on ign.com.
+	
+        * khtml/html/htmlparser.cpp:
+        (KHTMLParser::insertNode):
+
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
         * force-js-clean-timestamp: Rebuild for JSC changes.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 7b7f09c..a3a4b1b 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-11-18  David Hyatt  <hyatt at apple.com>
+
+	Fix my <konqblock> regression on ign.com.
+	
+        * khtml/html/htmlparser.cpp:
+        (KHTMLParser::insertNode):
+
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
         * force-js-clean-timestamp: Rebuild for JSC changes.
diff --git a/WebCore/khtml/html/htmlparser.cpp b/WebCore/khtml/html/htmlparser.cpp
index b2c107c..e0b0b76 100644
--- a/WebCore/khtml/html/htmlparser.cpp
+++ b/WebCore/khtml/html/htmlparser.cpp
@@ -626,6 +626,8 @@ bool KHTMLParser::insertNode(NodeImpl *n, bool flat)
             case ID_TEXT:
             {
                 TextImpl *t = static_cast<TextImpl *>(n);
+                if (t->containsOnlyWhitespace())
+                    return false;
                 DOMStringImpl *i = t->string();
                 unsigned int pos = 0;
                 while(pos < i->l && ( *(i->s+pos) == QChar(' ') ||

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list