RESOLVED FIXED 157359
When exiting fullscreen, call a JS method immediately to implement the style changes for the presentation mode change right away
https://bugs.webkit.org/show_bug.cgi?id=157359
Summary When exiting fullscreen, call a JS method immediately to implement the style ...
Ada Chan
Reported 2016-05-04 15:07:12 PDT
When exiting fullscreen, call a JS method immediately to implement the style changes for the presentation mode change right away. This should help with the flash in <rdar://problem/24476949>.
Attachments
Patch (3.79 KB, patch)
2016-05-04 17:37 PDT, Ada Chan
eric.carlson: review+
Ada Chan
Comment 1 2016-05-04 17:37:31 PDT
Eric Carlson
Comment 2 2016-05-05 07:18:20 PDT
Comment on attachment 278146 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=278146&action=review > Source/WebCore/html/HTMLMediaElement.cpp:5399 > + updateMediaControlsAfterPresentationModeChanged(); Nit: I think "updateMediaControlsAfterPresentationModeChange" would be a slightly better name. > Source/WebCore/html/HTMLMediaElement.cpp:6570 > + JSC::CallData callData; > + JSC::CallType callType = function->methodTable()->getCallData(function, callData); > + JSC::MarkedArgumentBuffer argList; > + if (callType == JSC::CallType::None) > + return; Nit: I see that this is based on existing code, but callData and argList should be declared after the potential early return.
Ada Chan
Comment 3 2016-05-05 10:48:21 PDT
(In reply to comment #2) > Comment on attachment 278146 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=278146&action=review > > > Source/WebCore/html/HTMLMediaElement.cpp:5399 > > + updateMediaControlsAfterPresentationModeChanged(); > > Nit: I think "updateMediaControlsAfterPresentationModeChange" would be a > slightly better name. Renamed. > > > Source/WebCore/html/HTMLMediaElement.cpp:6570 > > + JSC::CallData callData; > > + JSC::CallType callType = function->methodTable()->getCallData(function, callData); > > + JSC::MarkedArgumentBuffer argList; > > + if (callType == JSC::CallType::None) > > + return; > > Nit: I see that this is based on existing code, but callData and argList > should be declared after the potential early return. callData is actually used in the call to getCallData(), so I'll keep that there. I've moved the declaration of argList down. Thanks for the review!
Ada Chan
Comment 4 2016-05-05 11:15:03 PDT
Note You need to log in before you can comment on or make changes to this bug.