Changeset 219310 in webkit
- Timestamp:
- Jul 10, 2017, 3:08:38 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r219309 r219310 1 2017-07-10 Wenson Hsieh <wenson_hsieh@apple.com> 2 3 [WK2] Ignore touch events that interrupt platform-driven momentum scrolling 4 https://bugs.webkit.org/show_bug.cgi?id=174300 5 <rdar://problem/33030639> 6 7 Reviewed by Simon Fraser. 8 9 Adds 3 new LayoutTests covering cases of touch event handling during scroll deceleration in mainframe and 10 overflow scrolling containers. See Source/WebKit2/ChangeLog for more detail. 11 12 * fast/events/ios/no-touch-events-when-stopping-momentum-scroll-in-mainframe-expected.txt: Added. 13 * fast/events/ios/no-touch-events-when-stopping-momentum-scroll-in-mainframe.html: Added. 14 * fast/events/ios/no-touch-events-when-stopping-momentum-scroll-in-overflow-expected.txt: Added. 15 * fast/events/ios/no-touch-events-when-stopping-momentum-scroll-in-overflow.html: Added. 16 * fast/events/ios/touch-events-during-scroll-deceleration-in-overflow-expected.txt: Added. 17 * fast/events/ios/touch-events-during-scroll-deceleration-in-overflow.html: Added. 18 1 19 2017-07-10 Matt Lewis <jlewis3@apple.com> 2 20 -
trunk/Source/WebCore/ChangeLog
r219307 r219310 1 2017-07-10 Wenson Hsieh <wenson_hsieh@apple.com> 2 3 [WK2] Ignore touch events that interrupt platform-driven momentum scrolling 4 https://bugs.webkit.org/show_bug.cgi?id=174300 5 <rdar://problem/33030639> 6 7 Reviewed by Simon Fraser. 8 9 See Source/WebKit2/ChangeLog for more detail. 10 11 Tests: fast/events/ios/no-touch-events-when-stopping-momentum-scroll-in-mainframe.html 12 fast/events/ios/no-touch-events-when-stopping-momentum-scroll-in-overflow.html 13 fast/events/ios/touch-events-during-scroll-deceleration-in-overflow.html 14 15 * page/scrolling/ScrollingTree.h: 16 (WebCore::ScrollingTree::scrollingTreeNodeDidEndPanGesture): 17 1 18 2017-07-10 Jeremy Jones <jeremyj@apple.com> 2 19 -
trunk/Source/WebCore/page/scrolling/ScrollingTree.h
r217737 r219310 102 102 virtual FloatRect fixedPositionRect() = 0; 103 103 virtual void scrollingTreeNodeWillStartPanGesture() { } 104 virtual void scrollingTreeNodeDidEndPanGesture() { } 104 105 virtual void scrollingTreeNodeWillStartScroll() { } 105 106 virtual void scrollingTreeNodeDidEndScroll() { } -
trunk/Source/WebKit2/ChangeLog
r219308 r219310 1 2017-07-10 Wenson Hsieh <wenson_hsieh@apple.com> 2 3 [WK2] Ignore touch events that interrupt platform-driven momentum scrolling 4 https://bugs.webkit.org/show_bug.cgi?id=174300 5 <rdar://problem/33030639> 6 7 Reviewed by Simon Fraser. 8 9 Adds support for immediately failing WKContentView's UIWebTouchEventsGestureRecognizer if any touch interrupts 10 scroll view deceleration. Covered by 3 new LayoutTests (see Source/WebCore/ChangeLog). 11 12 * Platform/spi/ios/UIKitSPI.h: 13 * UIProcess/API/Cocoa/WKWebView.mm: 14 (-[WKWebView scrollViewDidEndDragging:willDecelerate:]): 15 (-[WKWebView scrollViewDidEndZooming:withView:atScale:]): 16 * UIProcess/PageClient.h: 17 * UIProcess/Scrolling/RemoteScrollingCoordinatorProxy.h: 18 * UIProcess/Scrolling/RemoteScrollingTree.cpp: 19 (WebKit::RemoteScrollingTree::scrollingTreeNodeDidEndPanGesture): 20 * UIProcess/Scrolling/RemoteScrollingTree.h: 21 * UIProcess/Scrolling/ios/ScrollingTreeOverflowScrollingNodeIOS.h: 22 * UIProcess/Scrolling/ios/ScrollingTreeOverflowScrollingNodeIOS.mm: 23 (-[WKOverflowScrollViewDelegate scrollViewDidEndDragging:willDecelerate:]): 24 (WebKit::ScrollingTreeOverflowScrollingNodeIOS::overflowScrollViewDidEndPanGesture): 25 26 Adds plumbing in the UI process to alert the WKContentView when scroll view dragging has ended in an overflow 27 momentum scrolling region (tracked by an overflow scrolling tree node). This parallels UI process plumbing for 28 ScrollingTreeOverflowScrollingNodeIOS::overflowScrollViewWillStartPanGesture. 29 30 * UIProcess/WebPageProxy.h: 31 * UIProcess/ios/PageClientImplIOS.h: 32 * UIProcess/ios/PageClientImplIOS.mm: 33 (WebKit::PageClientImpl::overflowScrollViewDidEndPanGesture): 34 * UIProcess/ios/RemoteScrollingCoordinatorProxyIOS.mm: 35 (WebKit::RemoteScrollingCoordinatorProxy::scrollingTreeNodeDidEndPanGesture): 36 * UIProcess/ios/WKContentViewInteraction.h: 37 * UIProcess/ios/WKContentViewInteraction.mm: 38 (-[WKContentView scrollViewDidEndPanOrPinchGesture]): 39 40 When the dragging phase of a scroll gesture ends, ensure that _canSendTouchEventsAsynchronously is reset to NO. 41 When touches are not being prevented, this flag is set to YES in -scrollViewWillStartPanOrPinchGesture: and 42 normally reset to NO in -_webTouchEventsRecognized: after all touch points have been released. However, in the 43 case where we've prematurely failed the web touch events gesture recognizer after -touchesBegan:, 44 -_webTouchEventsRecognized: will not be called again in a state where all touches have been released. Thus, we 45 also need to bookend the place where we begin allowing async touch event dispatch in 46 -scrollViewWillStartPanOrPinchGesture by disallowing async touch event dispatch in 47 -scrollViewDidEndPanOrPinchGesture. 48 49 This has no impact in the normal case where the user scrolls without momentum, since 50 -scrollViewDidEndPanOrPinchGesture will fire after async touch events have already been disallowed in 51 -_webTouchEventsRecognized:, and in the case where the page prevents default on touches, scrolling doesn't 52 happen anyways, so neither scrollViewWillStartPanOrPinchGesture nor scrollViewDidEndPanOrPinchGesture will be 53 invoked. 54 55 (-[WKContentView gestureRecognizer:shouldIgnoreWebTouchWithEvent:]): 56 57 Implements a new SPI hook in UIKit. This serves an identical purpose as -shouldIgnoreWebTouch, but additionally 58 passes the triggering UIEvent, as well as the gesture recognizer itself (following standard convention for 59 Objective C delegate methods). Here, we return YES in the case where one or more of the touches recognized by 60 the gesture is currently interrupting scroll deceleration. 61 62 * UIProcess/ios/WebPageProxyIOS.mm: 63 (WebKit::WebPageProxy::overflowScrollViewDidEndPanGesture): 64 1 65 2017-07-10 Brent Fulgham <bfulgham@apple.com> 2 66 -
trunk/Source/WebKit2/Platform/spi/ios/UIKitSPI.h
r219225 r219310 690 690 }; 691 691 692 @protocol UIWebTouchEventsGestureRecognizerDelegate 692 @class UIWebTouchEventsGestureRecognizer; 693 694 @protocol UIWebTouchEventsGestureRecognizerDelegate <NSObject> 693 695 - (BOOL)isAnyTouchOverActiveArea:(NSSet *)touches; 694 - (BOOL)shouldIgnoreWebTouch; 696 @optional 697 - (BOOL)gestureRecognizer:(UIWebTouchEventsGestureRecognizer *)gestureRecognizer shouldIgnoreWebTouchWithEvent:(UIEvent *)event; 695 698 @end 696 699 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm
r219293 r219310 2151 2151 if (!decelerate) 2152 2152 [self _didFinishScrolling]; 2153 2154 if (scrollView.panGestureRecognizer.state == UIGestureRecognizerStateEnded) 2155 [_contentView scrollViewDidEndPanOrPinchGesture]; 2153 2156 } 2154 2157 … … 2185 2188 [self _scheduleVisibleContentRectUpdateAfterScrollInView:scrollView]; 2186 2189 [_contentView didZoomToScale:scale]; 2190 2191 if (scrollView.pinchGestureRecognizer.state == UIGestureRecognizerStateEnded) 2192 [_contentView scrollViewDidEndPanOrPinchGesture]; 2187 2193 } 2188 2194 -
trunk/Source/WebKit2/UIProcess/PageClient.h
r218837 r219310 309 309 virtual WebCore::FloatRect documentRect() const = 0; 310 310 virtual void overflowScrollViewWillStartPanGesture() = 0; 311 virtual void overflowScrollViewDidEndPanGesture() = 0; 311 312 virtual void overflowScrollViewDidScroll() = 0; 312 313 virtual void overflowScrollWillStartScroll() = 0; -
trunk/Source/WebKit2/UIProcess/Scrolling/RemoteScrollingCoordinatorProxy.h
r208985 r219310 87 87 WebCore::FloatRect customFixedPositionRect() const; 88 88 void scrollingTreeNodeWillStartPanGesture(); 89 void scrollingTreeNodeDidEndPanGesture(); 89 90 void scrollingTreeNodeWillStartScroll(); 90 91 void scrollingTreeNodeDidEndScroll(); -
trunk/Source/WebKit2/UIProcess/Scrolling/RemoteScrollingTree.cpp
r211033 r219310 88 88 m_scrollingCoordinatorProxy.scrollingTreeNodeWillStartPanGesture(); 89 89 } 90 91 void RemoteScrollingTree::scrollingTreeNodeDidEndPanGesture() 92 { 93 m_scrollingCoordinatorProxy.scrollingTreeNodeDidEndPanGesture(); 94 } 90 95 91 96 void RemoteScrollingTree::scrollingTreeNodeWillStartScroll() -
trunk/Source/WebKit2/UIProcess/Scrolling/RemoteScrollingTree.h
r211033 r219310 62 62 WebCore::FloatRect fixedPositionRect() override; 63 63 void scrollingTreeNodeWillStartPanGesture() override; 64 void scrollingTreeNodeDidEndPanGesture() override; 64 65 void scrollingTreeNodeWillStartScroll() override; 65 66 void scrollingTreeNodeDidEndScroll() override; -
trunk/Source/WebKit2/UIProcess/Scrolling/ios/ScrollingTreeOverflowScrollingNodeIOS.h
r208503 r219310 45 45 void overflowScrollDidEnd(); 46 46 void overflowScrollViewWillStartPanGesture(); 47 void overflowScrollViewDidEndPanGesture(); 47 48 void scrollViewDidScroll(const WebCore::FloatPoint&, bool inUserInteration); 48 49 void currentSnapPointIndicesDidChange(unsigned horizontal, unsigned vertical); -
trunk/Source/WebKit2/UIProcess/Scrolling/ios/ScrollingTreeOverflowScrollingNodeIOS.mm
r219137 r219310 118 118 _scrollingTreeNode->overflowScrollDidEnd(); 119 119 } 120 121 if (scrollView.panGestureRecognizer.state == UIGestureRecognizerStateEnded) 122 _scrollingTreeNode->overflowScrollViewDidEndPanGesture(); 120 123 } 121 124 … … 295 298 } 296 299 300 void ScrollingTreeOverflowScrollingNodeIOS::overflowScrollViewDidEndPanGesture() 301 { 302 scrollingTree().scrollingTreeNodeDidEndPanGesture(); 303 } 304 297 305 void ScrollingTreeOverflowScrollingNodeIOS::scrollViewDidScroll(const FloatPoint& scrollPosition, bool inUserInteration) 298 306 { -
trunk/Source/WebKit2/UIProcess/WebPageProxy.h
r219154 r219310 496 496 497 497 void overflowScrollViewWillStartPanGesture(); 498 void overflowScrollViewDidEndPanGesture(); 498 499 void overflowScrollViewDidScroll(); 499 500 void overflowScrollWillStartScroll(); -
trunk/Source/WebKit2/UIProcess/ios/PageClientImplIOS.h
r218837 r219310 152 152 153 153 void overflowScrollViewWillStartPanGesture() override; 154 void overflowScrollViewDidEndPanGesture() override; 154 155 void overflowScrollViewDidScroll() override; 155 156 void overflowScrollWillStartScroll() override; -
trunk/Source/WebKit2/UIProcess/ios/PageClientImplIOS.mm
r218837 r219310 672 672 } 673 673 674 void PageClientImpl::overflowScrollViewDidEndPanGesture() 675 { 676 [m_contentView scrollViewDidEndPanOrPinchGesture]; 677 } 678 674 679 void PageClientImpl::overflowScrollViewDidScroll() 675 680 { -
trunk/Source/WebKit2/UIProcess/ios/RemoteScrollingCoordinatorProxyIOS.mm
r219137 r219310 105 105 } 106 106 107 void RemoteScrollingCoordinatorProxy::scrollingTreeNodeDidEndPanGesture() 108 { 109 m_webPageProxy.overflowScrollViewDidEndPanGesture(); 110 } 111 107 112 void RemoteScrollingCoordinatorProxy::scrollingTreeNodeWillStartScroll() 108 113 { -
trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.h
r219271 r219310 280 280 281 281 - (void)scrollViewWillStartPanOrPinchGesture; 282 - (void)scrollViewDidEndPanOrPinchGesture; 282 283 283 284 - (BOOL)canBecomeFirstResponderForWebView; -
trunk/Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm
r219271 r219310 1844 1844 1845 1845 _canSendTouchEventsAsynchronously = YES; 1846 } 1847 1848 - (void)scrollViewDidEndPanOrPinchGesture 1849 { 1850 _canSendTouchEventsAsynchronously = NO; 1846 1851 } 1847 1852 … … 4051 4056 #pragma mark - Implementation of UIWebTouchEventsGestureRecognizerDelegate. 4052 4057 4058 // FIXME: Remove once -gestureRecognizer:shouldIgnoreWebTouchWithEvent: is in UIWebTouchEventsGestureRecognizer.h. Refer to <rdar://problem/33217525> for more details. 4053 4059 - (BOOL)shouldIgnoreWebTouch 4054 4060 { 4055 4061 return NO; 4062 } 4063 4064 - (BOOL)gestureRecognizer:(UIWebTouchEventsGestureRecognizer *)gestureRecognizer shouldIgnoreWebTouchWithEvent:(UIEvent *)event 4065 { 4066 NSSet<UITouch *> *touches = [event touchesForGestureRecognizer:gestureRecognizer]; 4067 for (UITouch *touch in touches) { 4068 if ([touch.view isKindOfClass:[UIScrollView class]] && [(UIScrollView *)touch.view _isInterruptingDeceleration]) 4069 return YES; 4070 } 4071 return self._scroller._isInterruptingDeceleration; 4056 4072 } 4057 4073 -
trunk/Source/WebKit2/UIProcess/ios/WebPageProxyIOS.mm
r218985 r219310 273 273 } 274 274 275 void WebPageProxy::overflowScrollViewDidEndPanGesture() 276 { 277 m_pageClient.overflowScrollViewDidEndPanGesture(); 278 } 279 275 280 void WebPageProxy::overflowScrollViewDidScroll() 276 281 {
Note:
See TracChangeset
for help on using the changeset viewer.