RESOLVED FIXED 170338
Modern media controls should never be enabled in non cocoa ports
https://bugs.webkit.org/show_bug.cgi?id=170338
Summary Modern media controls should never be enabled in non cocoa ports
Carlos Garcia Campos
Reported 2017-03-31 05:57:27 PDT
It's currently enabled, because it uses the default value for all other runtime features, but modern media controls are not a cross-platform feature. I think this is why media/video-click-dblckick-standalone.html started to fail after r214426. I can't reproduce the failure locally, though.
Attachments
Patch (2.78 KB, patch)
2017-03-31 05:59 PDT, Carlos Garcia Campos
mcatanzaro: review+
Carlos Garcia Campos
Comment 1 2017-03-31 05:59:46 PDT
Michael Catanzaro
Comment 2 2017-03-31 06:31:57 PDT
Comment on attachment 305967 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=305967&action=review This needs a build flag too. Having only a runtime flag really only makes sense if the feature could plausibly work on all platforms. This one is Mac-only. And please name it with _ENABLED. > Source/WebKit2/Shared/WebPreferencesDefinitions.h:320 > +#define DEFAULT_MODERN_MEDIA_CONTROLS true DEFAULT_MODERN_MEDIA_CONTROLS_ENABLED > Source/WebKit2/Shared/WebPreferencesDefinitions.h:322 > +#define DEFAULT_MODERN_MEDIA_CONTROLS false DEFAULT_MODERN_MEDIA_CONTROLS_ENABLED
Carlos Garcia Campos
Comment 3 2017-03-31 06:35:46 PDT
(In reply to Michael Catanzaro from comment #2) > Comment on attachment 305967 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=305967&action=review > > This needs a build flag too. Having only a runtime flag really only makes > sense if the feature could plausibly work on all platforms. This one is > Mac-only. > > And please name it with _ENABLED. Indeed. That was my intention, but somehow I didn't add that in the end. > > Source/WebKit2/Shared/WebPreferencesDefinitions.h:320 > > +#define DEFAULT_MODERN_MEDIA_CONTROLS true > > DEFAULT_MODERN_MEDIA_CONTROLS_ENABLED > > > Source/WebKit2/Shared/WebPreferencesDefinitions.h:322 > > +#define DEFAULT_MODERN_MEDIA_CONTROLS false > > DEFAULT_MODERN_MEDIA_CONTROLS_ENABLED
Carlos Garcia Campos
Comment 4 2017-03-31 06:37:43 PDT
Note You need to log in before you can comment on or make changes to this bug.