Clicking outside captions menu should dismiss it
Created attachment 187992 [details] Patch
Comment on attachment 187992 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=187992&action=review > Source/WebCore/html/shadow/MediaControlsApple.cpp:283 > + if (event->type() == eventNames().clickEvent) { > + if (m_closedCaptionsContainer && m_closedCaptionsContainer->isShowing()) > + m_closedCaptionsContainer->hide(); You should stop the event propagation so it doesn't get any further, and eg. pause playback in a media document.
Committed r142774: <http://trac.webkit.org/changeset/142774>