Title: [127772] trunk/Source/WebKit/blackberry
Revision
127772
Author
[email protected]
Date
2012-09-06 12:22:23 -0700 (Thu, 06 Sep 2012)

Log Message

[BlackBerry] Allow overscroll to composited scroll layers
https://bugs.webkit.org/show_bug.cgi?id=95998
PR #195305

Reviewed by Rob Buis.
Patch by Antonio Gomes <[email protected]>
Internally reviewed by Gen Mak.

No need to reset the overscroll limit factor at creation to 0.
It is already 0 by default, and later on the client sets the
appropriated value.

* WebKitSupport/InRegionScrollableArea.cpp:
(BlackBerry::WebKit::InRegionScrollableArea::InRegionScrollableArea):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (127771 => 127772)


--- trunk/Source/WebKit/blackberry/ChangeLog	2012-09-06 19:20:48 UTC (rev 127771)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2012-09-06 19:22:23 UTC (rev 127772)
@@ -1,3 +1,19 @@
+2012-09-06  Antonio Gomes  <[email protected]>
+
+        [BlackBerry] Allow overscroll to composited scroll layers
+        https://bugs.webkit.org/show_bug.cgi?id=95998
+        PR #195305
+
+        Reviewed by Rob Buis.
+        Internally reviewed by Gen Mak.
+
+        No need to reset the overscroll limit factor at creation to 0.
+        It is already 0 by default, and later on the client sets the
+        appropriated value.
+
+        * WebKitSupport/InRegionScrollableArea.cpp:
+        (BlackBerry::WebKit::InRegionScrollableArea::InRegionScrollableArea):
+
 2012-09-05  Sam Weinig  <[email protected]>
 
         Part 2 of removing PlatformString.h, remove PlatformString.h

Modified: trunk/Source/WebKit/blackberry/WebKitSupport/InRegionScrollableArea.cpp (127771 => 127772)


--- trunk/Source/WebKit/blackberry/WebKitSupport/InRegionScrollableArea.cpp	2012-09-06 19:20:48 UTC (rev 127771)
+++ trunk/Source/WebKit/blackberry/WebKitSupport/InRegionScrollableArea.cpp	2012-09-06 19:22:23 UTC (rev 127772)
@@ -75,7 +75,6 @@
         m_scrollsHorizontally = view->contentsWidth() > view->visibleWidth();
         m_scrollsVertically = view->contentsHeight() > view->visibleHeight();
 
-        m_overscrollLimitFactor = 0.0; // FIXME eventually support overscroll
         m_camouflagedCompositedScrollableLayer = reinterpret_cast<unsigned>(m_layer->enclosingElement()); // FIXME: Needs composited layer for inner frames.
         m_cachedNonCompositedScrollableNode = m_layer->enclosingElement();
 
@@ -105,8 +104,6 @@
             m_cachedNonCompositedScrollableNode = m_layer->enclosingElement();
             ASSERT(!m_cachedCompositedScrollableLayer);
         }
-
-        m_overscrollLimitFactor = 0.0;
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to