[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:35:32 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 8d4ed25f0ed30c5198538c91bfeb05c2ae784568
Author: trey <trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Apr 8 23:39:18 2003 +0000

    	3221355 document is numb to clicks after going back
    
    	The layoutTimer now does a layout if the doc is in state Completed,
    	in addition to LayoutAcceptable.
    
            Reviewed by Richard.
    
            * WebView.subproj/WebFramePrivate.m:
            (-[WebFrame _timedLayout:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4050 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 5d9c7fe..acfac15 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,15 @@
+2003-04-08  Trey Matteson  <trey at apple.com>
+
+	3221355 document is numb to clicks after going back
+
+	The layoutTimer now does a layout if the doc is in state Completed,
+	in addition to LayoutAcceptable.
+
+        Reviewed by Richard.
+
+        * WebView.subproj/WebFramePrivate.m:
+        (-[WebFrame _timedLayout:]):
+
 2003-04-08  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: 3221128 - Double grey lines on macromedia.com home page
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index d7ade3e..0fe7c6e 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -471,7 +471,7 @@ Repeat load of the same URL (by any other means of navigation other than the rel
     [_private->scheduledLayoutTimer release];
     _private->scheduledLayoutTimer = nil;
     
-    if (_private->state == WebFrameStateLayoutAcceptable) {
+    if (_private->state >= WebFrameStateLayoutAcceptable) {
         NSView <WebDocumentView> *documentView = [[self frameView] documentView];
         
         if ([self webView])

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list