Changeset 130229 in webkit


Ignore:
Timestamp:
Oct 2, 2012, 4:23:19 PM (13 years ago)
Author:
Beth Dakin
Message:

https://bugs.webkit.org/show_bug.cgi?id=98182
REGRESSION (r130091): Scroll wheel no longer scrolls within div

Reviewed by Simon Fraser.

Forgot to initialize m_nonFastScrollableRegion in this copy
constructor.

  • page/scrolling/ScrollingStateScrollingNode.cpp:

(WebCore::ScrollingStateScrollingNode::ScrollingStateScrollingNode):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r130226 r130229  
     12012-10-02  Beth Dakin  <bdakin@apple.com>
     2
     3        https://bugs.webkit.org/show_bug.cgi?id=98182
     4        REGRESSION (r130091): Scroll wheel no longer scrolls within div
     5
     6        Reviewed by Simon Fraser.
     7
     8        Forgot to initialize m_nonFastScrollableRegion in this copy
     9        constructor.
     10        * page/scrolling/ScrollingStateScrollingNode.cpp:
     11        (WebCore::ScrollingStateScrollingNode::ScrollingStateScrollingNode):
     12
    1132012-10-02  Nate Chapin  <japhet@chromium.org>
    214
  • trunk/Source/WebCore/page/scrolling/ScrollingStateScrollingNode.cpp

    r130091 r130229  
    5959    , m_viewportRect(stateNode->viewportRect())
    6060    , m_contentsSize(stateNode->contentsSize())
     61    , m_nonFastScrollableRegion(stateNode->nonFastScrollableRegion())
    6162    , m_wheelEventHandlerCount(stateNode->wheelEventHandlerCount())
    6263    , m_shouldUpdateScrollLayerPositionOnMainThread(stateNode->shouldUpdateScrollLayerPositionOnMainThread())
Note: See TracChangeset for help on using the changeset viewer.