⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245985 in webkit


Ignore:
Timestamp:
May 31, 2019, 2:31:57 PM (7 years ago)
Author:
Alan Coon
Message:

Revert r245953. rdar://problem/51314019

Location:
branches/safari-608.1.27-branch
Files:
6 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-608.1.27-branch/LayoutTests/ChangeLog

    r245971 r245985  
     12019-05-31  Kocsen Chung  <kocsen_chung@apple.com>
     2
     3        Revert r245953. rdar://problem/51314019
     4
    152019-05-31  Kocsen Chung  <kocsen_chung@apple.com>
    26
  • branches/safari-608.1.27-branch/Source/WebKit/ChangeLog

    r245971 r245985  
     12019-05-31  Kocsen Chung  <kocsen_chung@apple.com>
     2
     3        Revert r245953. rdar://problem/51314019
     4
    152019-05-31  Kocsen Chung  <kocsen_chung@apple.com>
    26
  • branches/safari-608.1.27-branch/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm

    r245953 r245985  
    19891989    [_scrollView setZoomEnabled:layerTreeTransaction.allowsUserScaling()];
    19901990#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()];
    19941992#endif
    19951993    if (!layerTreeTransaction.scaleWasSetByUIProcess() && ![_scrollView isZooming] && ![_scrollView isZoomBouncing] && ![_scrollView _isAnimatingZoom] && [_scrollView zoomScale] != layerTreeTransaction.pageScaleFactor()) {
Note: See TracChangeset for help on using the changeset viewer.