RESOLVED FIXED 183742
[Extra zoom mode] Require fullscreen for video playback
https://bugs.webkit.org/show_bug.cgi?id=183742
Summary [Extra zoom mode] Require fullscreen for video playback
Eric Carlson
Reported 2018-03-19 07:10:25 PDT
Require fullscreen for video playback
Attachments
Patch (40.98 KB, patch)
2018-03-19 07:26 PDT, Eric Carlson
no flags
Patch (40.81 KB, patch)
2018-03-19 07:57 PDT, Eric Carlson
no flags
Patch (40.90 KB, patch)
2018-03-19 10:03 PDT, Eric Carlson
no flags
Patch (41.26 KB, patch)
2018-03-19 11:26 PDT, Eric Carlson
no flags
Eric Carlson
Comment 1 2018-03-19 07:11:47 PDT
Eric Carlson
Comment 2 2018-03-19 07:26:18 PDT
Jon Lee
Comment 3 2018-03-19 07:51:22 PDT
Comment on attachment 336042 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=336042&action=review > Source/WebCore/Modules/modern-media-controls/media/playback-support.js:52 > + this.control.visible = true; This may cause a problem when a compact player is playing inline. Can we differentiate between when we are in extra zoom mode?
Eric Carlson
Comment 4 2018-03-19 07:57:20 PDT
Jer Noble
Comment 5 2018-03-19 10:01:44 PDT
Comment on attachment 336044 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=336044&action=review > Source/WebCore/html/HTMLMediaElement.cpp:5272 > - if (m_mediaSession->requiresFullscreenForVideoPlayback(*this) && !isFullscreen()) > + if (m_mediaSession->requiresFullscreenForVideoPlayback(*this) && !isFullscreen()) { > enterFullscreen(); > +#if ENABLE(EXTRA_ZOOM_MODE) > + return; > +#endif > + } Why not just make the early return unconditional? Then this could be moved outside the if() statement; mitigating any side effects to things like "setDisplayMode()" and "clientWillBeginPlayback()".
Eric Carlson
Comment 6 2018-03-19 10:03:39 PDT
Eric Carlson
Comment 7 2018-03-19 11:26:35 PDT
WebKit Commit Bot
Comment 8 2018-03-19 14:22:20 PDT
Comment on attachment 336060 [details] Patch Clearing flags on attachment: 336060 Committed r229714: <https://trac.webkit.org/changeset/229714>
WebKit Commit Bot
Comment 9 2018-03-19 14:22:21 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.