Changeset 267488 in webkit
- Timestamp:
- Sep 23, 2020, 10:10:18 AM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 4 edited
-
WebKit/ChangeLog (modified) (1 diff)
-
WebKit/Shared/WebPreferencesExperimental.yaml (modified) (1 diff)
-
WebKitLegacy/mac/ChangeLog (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebPreferences.mm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r267479 r267488 1 2020-09-23 Chris Dumez <cdumez@apple.com> 2 3 Turn on the modern unprefixed WebAudio API 4 https://bugs.webkit.org/show_bug.cgi?id=216885 5 6 Reviewed by Eric Carlson. 7 8 Turn on the modern unprefixed WebAudio API now that we support most of the API 9 besides AudioWorklet and now that we have a good pass rate on WPT tests. 10 11 * Shared/WebPreferencesExperimental.yaml: 12 1 13 2020-09-23 Truitt Savell <tsavell@apple.com> 2 14 -
trunk/Source/WebKit/Shared/WebPreferencesExperimental.yaml
r267479 r267488 75 75 ModernUnprefixedWebAudioEnabled: 76 76 type: bool 77 defaultValue: false77 defaultValue: true 78 78 condition: ENABLE(WEB_AUDIO) 79 79 humanReadableName: "Modern WebAudio API" -
trunk/Source/WebKitLegacy/mac/ChangeLog
r267397 r267488 1 2020-09-23 Chris Dumez <cdumez@apple.com> 2 3 Turn on the modern unprefixed WebAudio API 4 https://bugs.webkit.org/show_bug.cgi?id=216885 5 6 Reviewed by Eric Carlson. 7 8 Turn on the modern unprefixed WebAudio API now that we support most of the API 9 besides AudioWorklet and now that we have a good pass rate on WPT tests. 10 11 * WebView/WebPreferences.mm: 12 (+[WebPreferences initialize]): 13 1 14 2020-09-21 Alex Christensen <achristensen@webkit.org> 2 15 -
trunk/Source/WebKitLegacy/mac/WebView/WebPreferences.mm
r267222 r267488 537 537 @YES, WebKitMediaControlsScaleWithPageZoomPreferenceKey, 538 538 @NO, WebKitWebAudioEnabledPreferenceKey, 539 @NO, WebKitModernUnprefixedWebAudioEnabledPreferenceKey, 539 540 @YES, WebKitBackspaceKeyNavigationEnabledKey, 540 541 @NO, WebKitShouldDisplaySubtitlesPreferenceKey, … … 565 566 // Enable WebAudio by default in all iOS UIWebViews 566 567 @YES, WebKitWebAudioEnabledPreferenceKey, 568 @YES, WebKitModernUnprefixedWebAudioEnabledPreferenceKey, 567 569 568 570 @YES, WebKitShouldRespectImageOrientationKey, … … 577 579 @(WebAllowAllStorage), WebKitStorageBlockingPolicyKey, 578 580 @NO, WebKitPlugInSnapshottingEnabledPreferenceKey, 579 @NO, WebKitModernUnprefixedWebAudioEnabledPreferenceKey,580 581 581 582 #if PLATFORM(IOS_FAMILY)
Note:
See TracChangeset
for help on using the changeset viewer.