[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

weinig at apple.com weinig at apple.com
Mon Feb 21 00:14:27 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 685ed248aa9ed18f823f39dcf122c652b8eeb87d
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 28 23:21:00 2011 +0000

    Keyboard scrolling doesn’t work in WebKit2
    <rdar://problem/8909672>
    
    Reviewed by Anders Carlsson.
    
    * platform/mac/ScrollAnimatorMac.mm:
    (-[ScrollAnimationHelperDelegate convertSizeToBacking:]):
    (-[ScrollAnimationHelperDelegate convertSizeFromBacking:]):
    Add additional necessary delegate methods.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77003 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index a6ba548..c191c39 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2011-01-28  Sam Weinig  <sam at webkit.org>
+
+        Reviewed by Anders Carlsson.
+
+        Keyboard scrolling doesn’t work in WebKit2
+        <rdar://problem/8909672>
+
+        * platform/mac/ScrollAnimatorMac.mm:
+        (-[ScrollAnimationHelperDelegate convertSizeToBacking:]):
+        (-[ScrollAnimationHelperDelegate convertSizeFromBacking:]):
+        Add additional necessary delegate methods.
+
 2011-01-29  Darin Adler  <darin at apple.com>
 
         Reviewed by Dan Bernstein.
diff --git a/Source/WebCore/platform/mac/ScrollAnimatorMac.mm b/Source/WebCore/platform/mac/ScrollAnimatorMac.mm
index 5ac36e7..d0ea5f4 100644
--- a/Source/WebCore/platform/mac/ScrollAnimatorMac.mm
+++ b/Source/WebCore/platform/mac/ScrollAnimatorMac.mm
@@ -103,6 +103,16 @@ static NSSize abs(NSSize size)
     return abs(size);
 }
 
+- (NSSize)convertSizeToBacking:(NSSize)size
+{
+    return abs(size);
+}
+
+- (NSSize)convertSizeFromBacking:(NSSize)size
+{
+    return abs(size);
+}
+
 - (id)superview
 {
     return nil;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list