Changeset 230163 in webkit


Ignore:
Timestamp:
Apr 2, 2018 10:45:07 AM (6 years ago)
Author:
jer.noble@apple.com
Message:

REGRESSION (229680): Fullscreen video does not work (youtube, netflix)
https://bugs.webkit.org/show_bug.cgi?id=184235

Reviewed by Eric Carlson.

Enable the Fullscreen API by default.

  • Shared/WebPreferences.yaml:
  • Shared/WebPreferencesDefaultValues.h:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r230162 r230163  
     12018-04-02  Jer Noble  <jer.noble@apple.com>
     2
     3        REGRESSION (229680): Fullscreen video does not work (youtube, netflix)
     4        https://bugs.webkit.org/show_bug.cgi?id=184235
     5
     6        Reviewed by Eric Carlson.
     7
     8        Enable the Fullscreen API by default.
     9
     10        * Shared/WebPreferences.yaml:
     11        * Shared/WebPreferencesDefaultValues.h:
     12
    1132018-04-02  Fujii Hironori  <Hironori.Fujii@sony.com>
    214
  • trunk/Source/WebKit/Shared/WebPreferences.yaml

    r230039 r230163  
    166166FullScreenEnabled:
    167167  type: bool
    168   defaultValue: false
     168  defaultValue: DEFAULT_ENABLE_FULLSCREEN_API
    169169  condition: ENABLE(FULLSCREEN_API)
    170170  visibleCondition: PLATFORM(IOS)
  • trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.h

    r229995 r230163  
    7777#define DEFAULT_LEGACY_ENCRYPTED_MEDIA_API_ENABLED false
    7878#define DEFAULT_INTERACTIVE_MEDIA_CAPTURE_STREAM_REPROMPT_INTERVAL_IN_MINUTES 1
     79#define DEFAULT_ENABLE_FULLSCREEN_API false
    7980#else
    8081#define DEFAULT_ALLOWS_PICTURE_IN_PICTURE_MEDIA_PLAYBACK false
     
    9697#define DEFAULT_LEGACY_ENCRYPTED_MEDIA_API_ENABLED true
    9798#define DEFAULT_INTERACTIVE_MEDIA_CAPTURE_STREAM_REPROMPT_INTERVAL_IN_MINUTES 10
     99#define DEFAULT_ENABLE_FULLSCREEN_API true
    98100#endif
    99101
Note: See TracChangeset for help on using the changeset viewer.