Changeset 260276 in webkit
- Timestamp:
- Apr 17, 2020, 1:04:59 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
FeatureFlags/WebKit.plist (modified) (1 diff)
-
Shared/WebPreferencesDefaultValues.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r260263 r260276 1 2020-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 1 19 2020-04-17 Per Arne Vollan <pvollan@apple.com> 2 20 -
trunk/Source/WebKit/FeatureFlags/WebKit.plist
r259778 r260276 6 6 <dict> 7 7 <key>Enabled</key> 8 < false/>8 <true/> 9 9 </dict> 10 10 <key>canvas_and_media_in_gpu_process</key> -
trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.cpp
r258498 r260276 89 89 #endif 90 90 91 #if PLATFORM(MAC) 92 return true; 93 #endif 94 91 95 return false; 92 96 }
Note:
See TracChangeset
for help on using the changeset viewer.