[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 07:17:08 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5de7095def4e43a4088867f88dcfa81d93a260a9
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Dec 21 04:35:29 2002 +0000

            Reviewed by Trey and Don.
    
    	- fixed 3132160 -- meta refresh does not work if there's a space after the refresh interval value
    
            * khtml/xml/dom_docimpl.cpp: (DocumentImpl::processHttpEquiv):
    	Added a call to stripWhiteSpace here. The other places that processes delays for
    	meta refresh already had the stripWhiteSpace call, but this was missing it.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3168 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 9c01e64..c4ebc7b 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2002-12-20  Darin Adler  <darin at apple.com>
+
+        Reviewed by Trey and Don.
+
+	- fixed 3132160 -- meta refresh does not work if there's a space after the refresh interval value
+
+        * khtml/xml/dom_docimpl.cpp: (DocumentImpl::processHttpEquiv):
+	Added a call to stripWhiteSpace here. The other places that processes delays for
+	meta refresh already had the stripWhiteSpace call, but this was missing it.
+
 2002-12-20  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3134163, a regression from the reduction of
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 9c01e64..c4ebc7b 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2002-12-20  Darin Adler  <darin at apple.com>
+
+        Reviewed by Trey and Don.
+
+	- fixed 3132160 -- meta refresh does not work if there's a space after the refresh interval value
+
+        * khtml/xml/dom_docimpl.cpp: (DocumentImpl::processHttpEquiv):
+	Added a call to stripWhiteSpace here. The other places that processes delays for
+	meta refresh already had the stripWhiteSpace call, but this was missing it.
+
 2002-12-20  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3134163, a regression from the reduction of
diff --git a/WebCore/khtml/xml/dom_docimpl.cpp b/WebCore/khtml/xml/dom_docimpl.cpp
index d105f46..ecc6691 100644
--- a/WebCore/khtml/xml/dom_docimpl.cpp
+++ b/WebCore/khtml/xml/dom_docimpl.cpp
@@ -1469,7 +1469,7 @@ void DocumentImpl::processHttpEquiv(const DOMString &equiv, const DOMString &con
             bool ok = false;
 
 	    DOMStringImpl* s = content.implementation()->substring(0, pos);
-	    delay = QConstString(s->s, s->l).string().toDouble(&ok);
+	    delay = QConstString(s->s, s->l).string().stripWhiteSpace().toDouble(&ok);
 	    delete s;
 
             pos++;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list