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

Changeset 260276 in webkit


Ignore:
Timestamp:
Apr 17, 2020, 1:04:59 PM (6 years ago)
Author:
Simon Fraser
Message:

Turn async frame and overflow scrolling on by default on macOS
https://bugs.webkit.org/show_bug.cgi?id=210661
rdar://problem/60420037

Reviewed by Tim Horton.

Flip the plist value and the default value for macOS which is outside of the feature flag #ifdef.

Testing keeps async overflow scrolling off by default, so this should not affect testing.

This only impacts WebKit2.

  • FeatureFlags/WebKit.plist:
  • Shared/WebPreferencesDefaultValues.cpp:

(WebKit::defaultAsyncFrameAndOverflowScrollingEnabled):

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r260263 r260276  
     12020-04-17  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Turn async frame and overflow scrolling on by default on macOS
     4        https://bugs.webkit.org/show_bug.cgi?id=210661
     5        rdar://problem/60420037
     6
     7        Reviewed by Tim Horton.
     8
     9        Flip the plist value and the default value for macOS which is outside of the feature flag #ifdef.
     10
     11        Testing keeps async overflow scrolling off by default, so this should not affect testing.
     12
     13        This only impacts WebKit2.
     14
     15        * FeatureFlags/WebKit.plist:
     16        * Shared/WebPreferencesDefaultValues.cpp:
     17        (WebKit::defaultAsyncFrameAndOverflowScrollingEnabled):
     18
    1192020-04-17  Per Arne Vollan  <pvollan@apple.com>
    220
  • trunk/Source/WebKit/FeatureFlags/WebKit.plist

    r259778 r260276  
    66    <dict>
    77        <key>Enabled</key>
    8         <false/>
     8        <true/>
    99    </dict>
    1010    <key>canvas_and_media_in_gpu_process</key>
  • trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.cpp

    r258498 r260276  
    8989#endif
    9090
     91#if PLATFORM(MAC)
     92    return true;
     93#endif
     94
    9195    return false;
    9296}
Note: See TracChangeset for help on using the changeset viewer.