Changeset 245830 in webkit
- Timestamp:
- May 28, 2019, 4:27:54 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r245822 r245830 1 2019-05-28 Tim Horton <timothy_horton@apple.com> 2 3 REGRESSION(r245795): causing internal testers to exit early after 50 crashes. 4 https://bugs.webkit.org/show_bug.cgi?id=198310 5 <rdar://problem/51192535> 6 7 Reviewed by Simon Fraser. 8 9 * UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm: 10 (WebKit::touchActionsForPoint): 11 Initialize hitView to nil. 12 1 13 2019-05-28 Brent Fulgham <bfulgham@apple.com> 2 14 -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm
r245795 r245830 99 99 return { WebCore::TouchAction::Auto }; 100 100 101 UIView *hitView ;101 UIView *hitView = nil; 102 102 for (auto *view : WTF::makeReversedRange(viewsAtPoint)) { 103 103 if ([view isKindOfClass:[WKCompositingView class]]) {
Note:
See TracChangeset
for help on using the changeset viewer.