[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 06:23:46 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a988b1d4b46852466e264362025fba61a2ac6e0e
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 11 04:12:36 2002 +0000

            * WebView.subproj/IFWebViewPrivate.mm:
            (-[IFWebView _scrollToBottomLeft]): Fix this to use the document view to define what
    	the bottom left is, not the content view (which is often much smaller than the document).
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1529 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index fb57828..d6542d6 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,9 @@
+2002-07-10  Darin Adler  <darin at apple.com>
+
+        * WebView.subproj/IFWebViewPrivate.mm:
+        (-[IFWebView _scrollToBottomLeft]): Fix this to use the document view to define what
+	the bottom left is, not the content view (which is often much smaller than the document).
+
 2002-07-10  Chris Blumenberg  <cblu at apple.com>
 
 	Fixes for:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index fb57828..d6542d6 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,9 @@
+2002-07-10  Darin Adler  <darin at apple.com>
+
+        * WebView.subproj/IFWebViewPrivate.mm:
+        (-[IFWebView _scrollToBottomLeft]): Fix this to use the document view to define what
+	the bottom left is, not the content view (which is often much smaller than the document).
+
 2002-07-10  Chris Blumenberg  <cblu at apple.com>
 
 	Fixes for:
diff --git a/WebKit/WebView.subproj/IFWebViewPrivate.mm b/WebKit/WebView.subproj/IFWebViewPrivate.mm
index 07344cc..99762c6 100644
--- a/WebKit/WebView.subproj/IFWebViewPrivate.mm
+++ b/WebKit/WebView.subproj/IFWebViewPrivate.mm
@@ -154,7 +154,7 @@ static NSMutableDictionary *_viewTypes=nil;
 
 - (void)_scrollToBottomLeft
 {
-    [[self _contentView] scrollPoint: NSMakePoint(0, [[self _contentView] bounds].size.height)];
+    [[self _contentView] scrollPoint: NSMakePoint(0, [[[self frameScrollView] documentView] bounds].size.height)];
 }
 
 - (void)_lineDown
diff --git a/WebKit/WebView.subproj/WebFrameViewPrivate.m b/WebKit/WebView.subproj/WebFrameViewPrivate.m
index 07344cc..99762c6 100644
--- a/WebKit/WebView.subproj/WebFrameViewPrivate.m
+++ b/WebKit/WebView.subproj/WebFrameViewPrivate.m
@@ -154,7 +154,7 @@ static NSMutableDictionary *_viewTypes=nil;
 
 - (void)_scrollToBottomLeft
 {
-    [[self _contentView] scrollPoint: NSMakePoint(0, [[self _contentView] bounds].size.height)];
+    [[self _contentView] scrollPoint: NSMakePoint(0, [[[self frameScrollView] documentView] bounds].size.height)];
 }
 
 - (void)_lineDown

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list