Changeset 151873 in webkit
- Timestamp:
- Jun 21, 2013, 6:10:24 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r151868 r151873 1 2013-06-21 Simon Fraser <simon.fraser@apple.com> 2 3 Occasional crash swiping between pages 4 https://bugs.webkit.org/show_bug.cgi?id=117902 5 6 Reviewed by Beth Dakin. 7 8 m_scrollingStateTree->rootStateNode() can be null when quickly swiping between pages, 9 so check this in ScrollingCoordinatorMac::commitTreeState(). 10 11 * page/scrolling/mac/ScrollingCoordinatorMac.mm: 12 (WebCore::ScrollingCoordinatorMac::commitTreeState): 13 1 14 2013-06-21 Brent Fulgham <bfulgham@apple.com> 2 15 -
trunk/Source/WebCore/page/scrolling/mac/ScrollingCoordinatorMac.mm
r151581 r151873 443 443 if (shouldUpdateScrollLayerPositionOnMainThread()) 444 444 indicatorMode = MainThreadScrollingBecauseOfStyleIndication; 445 else if (m_scrollingStateTree->rootStateNode() ->wheelEventHandlerCount())445 else if (m_scrollingStateTree->rootStateNode() && m_scrollingStateTree->rootStateNode()->wheelEventHandlerCount()) 446 446 indicatorMode = MainThreadScrollingBecauseOfEventHandlersIndication; 447 447 else
Note:
See TracChangeset
for help on using the changeset viewer.