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

trey trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:15:32 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 040136ef5b1fa8e3686a6279cb7948c6e310310c
Author: trey <trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 16 19:46:02 2002 +0000

    	3129175 - we're doing needless GETs when using b/f cache
    
    	Turns out that an empty UserStyle was causing WebCore to reload the base URL
    	of the page, since it tried to load the style "".
    
            Reviewed by Darin
    
            * khtml/khtml_part.cpp:
            (KHTMLPart::reparseConfiguration):  Of the UserStyle is empty, set it to an
    	empty string instead of an empty URL.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3086 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index fb27df2..2aa6a3f 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,16 @@
+2002-12-16  Trey Matteson  <trey at apple.com>
+
+	3129175 - we're doing needless GETs when using b/f cache
+
+	Turns out that an empty UserStyle was causing WebCore to reload the base URL
+	of the page, since it tried to load the style "".
+
+        Reviewed by Darin
+
+        * khtml/khtml_part.cpp:
+        (KHTMLPart::reparseConfiguration):  Of the UserStyle is empty, set it to an
+	empty string instead of an empty URL.
+
 2002-12-16  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Darin.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index fb27df2..2aa6a3f 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,16 @@
+2002-12-16  Trey Matteson  <trey at apple.com>
+
+	3129175 - we're doing needless GETs when using b/f cache
+
+	Turns out that an empty UserStyle was causing WebCore to reload the base URL
+	of the page, since it tried to load the style "".
+
+        Reviewed by Darin
+
+        * khtml/khtml_part.cpp:
+        (KHTMLPart::reparseConfiguration):  Of the UserStyle is empty, set it to an
+	empty string instead of an empty URL.
+
 2002-12-16  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Darin.
diff --git a/WebCore/khtml/khtml_part.cpp b/WebCore/khtml/khtml_part.cpp
index a3dba62..e522e00 100644
--- a/WebCore/khtml/khtml_part.cpp
+++ b/WebCore/khtml/khtml_part.cpp
@@ -3882,7 +3882,7 @@ void KHTMLPart::reparseConfiguration()
   if ( !userStyleSheet.isEmpty() )
     setUserStyleSheet( KURL( userStyleSheet ) );
   else
-    setUserStyleSheet( KURL( QString::null ) );
+    setUserStyleSheet( QString::null );
 
   QApplication::setOverrideCursor( waitCursor );
   if(d->m_doc) d->m_doc->updateStyleSelector();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list