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

Changeset 245984 in webkit


Ignore:
Timestamp:
May 31, 2019, 2:11:32 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r245953.
https://bugs.webkit.org/show_bug.cgi?id=198436

Broke quip (Requested by rniwa on #webkit).

Reverted changeset:

"iOS: Main frame should be scrollable when pinch zoomed or
software keyboard is up"
https://bugs.webkit.org/show_bug.cgi?id=198244
https://trac.webkit.org/changeset/245953

Location:
trunk
Files:
6 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r245977 r245984  
     12019-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
    1152019-05-31  Simon Fraser  <simon.fraser@apple.com>
    216
  • trunk/Source/WebKit/ChangeLog

    r245979 r245984  
     12019-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
    1152019-05-31  Tim Horton  <timothy_horton@apple.com>
    216
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm

    r245953 r245984  
    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.