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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:21:58 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 061808f98bae72f7d6648b809d84e52016de6312
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 14 01:12:45 2004 +0000

            Reviewed by Darin.
    
    	<rdar://problem/3527853>: REGRESSION (119-120): Peoplesoft menus do not work
    
            * kwq/KWQKHTMLPart.mm:
            (KWQKHTMLPart::scrollToAnchor): Right before calling checkCompleted(), set
    	m_bComplete to false, so it can get set right back to true if we're actually done
    	loading and fire all the right signals.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5896 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 53027b1..e1cde92 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2004-01-13  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Darin.
+
+	<rdar://problem/3527853>: REGRESSION (119-120): Peoplesoft menus do not work
+	
+        * kwq/KWQKHTMLPart.mm:
+        (KWQKHTMLPart::scrollToAnchor): Right before calling checkCompleted(), set
+	m_bComplete to false, so it can get set right back to true if we're actually done
+	loading and fire all the right signals.
+
 2004-01-13  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3526710, applets need to have the correct initial size after a layout has been done, since our
diff --git a/WebCore/kwq/KWQKHTMLPart.mm b/WebCore/kwq/KWQKHTMLPart.mm
index 4bc4d31..e762a88 100644
--- a/WebCore/kwq/KWQKHTMLPart.mm
+++ b/WebCore/kwq/KWQKHTMLPart.mm
@@ -1566,6 +1566,9 @@ void KWQKHTMLPart::scrollToAnchor(const KURL &URL)
     if (!gotoAnchor(URL.encodedHtmlRef()))
         gotoAnchor(URL.htmlRef());
 
+    // It's important to model this as a load that starts and immediately finishes.
+    // Otherwise, the parent frame may think we never finished loading.
+    d->m_bComplete = false;
     checkCompleted();
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list