Changeset 245984 in webkit
- Timestamp:
- May 31, 2019, 2:11:32 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 6 deleted
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/scrolling/ios/body-overflow-hidden-height-100-percent-keyboard-expected.txt (deleted)
-
LayoutTests/fast/scrolling/ios/body-overflow-hidden-height-100-percent-keyboard.html (deleted)
-
LayoutTests/fast/scrolling/ios/body-overflow-hidden-height-100-percent-zoomed-1-expected.txt (deleted)
-
LayoutTests/fast/scrolling/ios/body-overflow-hidden-height-100-percent-zoomed-1.html (deleted)
-
LayoutTests/fast/scrolling/ios/body-overflow-hidden-height-100-percent-zoomed-2-expected.txt (deleted)
-
LayoutTests/fast/scrolling/ios/body-overflow-hidden-height-100-percent-zoomed-2.html (deleted)
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r245977 r245984 1 2019-05-31 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r245953. 4 https://bugs.webkit.org/show_bug.cgi?id=198436 5 6 Broke quip (Requested by rniwa on #webkit). 7 8 Reverted changeset: 9 10 "iOS: Main frame should be scrollable when pinch zoomed or 11 software keyboard is up" 12 https://bugs.webkit.org/show_bug.cgi?id=198244 13 https://trac.webkit.org/changeset/245953 14 1 15 2019-05-31 Simon Fraser <simon.fraser@apple.com> 2 16 -
trunk/Source/WebKit/ChangeLog
r245979 r245984 1 2019-05-31 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r245953. 4 https://bugs.webkit.org/show_bug.cgi?id=198436 5 6 Broke quip (Requested by rniwa on #webkit). 7 8 Reverted changeset: 9 10 "iOS: Main frame should be scrollable when pinch zoomed or 11 software keyboard is up" 12 https://bugs.webkit.org/show_bug.cgi?id=198244 13 https://trac.webkit.org/changeset/245953 14 1 15 2019-05-31 Tim Horton <timothy_horton@apple.com> 2 16 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm
r245953 r245984 1989 1989 [_scrollView setZoomEnabled:layerTreeTransaction.allowsUserScaling()]; 1990 1990 #if ENABLE(ASYNC_SCROLLING) 1991 bool hasDockedInputView = !CGRectIsEmpty(_inputViewBounds); 1992 bool isZoomed = layerTreeTransaction.pageScaleFactor() > layerTreeTransaction.initialScaleFactor(); 1993 [_scrollView setScrollEnabled:_page->scrollingCoordinatorProxy()->hasScrollableMainFrame() || hasDockedInputView || isZoomed]; 1991 [_scrollView setScrollEnabled:_page->scrollingCoordinatorProxy()->hasScrollableMainFrame()]; 1994 1992 #endif 1995 1993 if (!layerTreeTransaction.scaleWasSetByUIProcess() && ![_scrollView isZooming] && ![_scrollView isZoomBouncing] && ![_scrollView _isAnimatingZoom] && [_scrollView zoomScale] != layerTreeTransaction.pageScaleFactor()) {
Note:
See TracChangeset
for help on using the changeset viewer.