Title: [226515] trunk/Source/WebCore
Revision
226515
Author
[email protected]
Date
2018-01-08 09:02:33 -0800 (Mon, 08 Jan 2018)

Log Message

Standard controls sometimes say video is in pip when it isnt.
https://bugs.webkit.org/show_bug.cgi?id=181095
rdar://problem/36182687

Patch by Jeremy Jones <[email protected]> on 2018-01-08
Reviewed by Eric Carlson.

* html/HTMLMediaElement.cpp:
(WebCore::HTMLMediaElement::exitFullscreen):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (226514 => 226515)


--- trunk/Source/WebCore/ChangeLog	2018-01-08 16:46:15 UTC (rev 226514)
+++ trunk/Source/WebCore/ChangeLog	2018-01-08 17:02:33 UTC (rev 226515)
@@ -1,3 +1,14 @@
+2018-01-08  Jeremy Jones  <[email protected]>
+
+        Standard controls sometimes say video is in pip when it isnt.
+        https://bugs.webkit.org/show_bug.cgi?id=181095
+        rdar://problem/36182687
+
+        Reviewed by Eric Carlson.
+
+        * html/HTMLMediaElement.cpp:
+        (WebCore::HTMLMediaElement::exitFullscreen):
+
 2018-01-08  Jer Noble  <[email protected]>
 
         REGRESSION: [iOS] ASSERTION FAILED: !node.isConnected() in WebCore::notifyNodeInsertedIntoDocument

Modified: trunk/Source/WebCore/html/HTMLMediaElement.cpp (226514 => 226515)


--- trunk/Source/WebCore/html/HTMLMediaElement.cpp	2018-01-08 16:46:15 UTC (rev 226514)
+++ trunk/Source/WebCore/html/HTMLMediaElement.cpp	2018-01-08 17:02:33 UTC (rev 226515)
@@ -5896,6 +5896,7 @@
         else
             document().page()->chrome().client().exitVideoFullscreenForVideoElement(downcast<HTMLVideoElement>(*this));
         scheduleEvent(eventNames().webkitendfullscreenEvent);
+        scheduleEvent(eventNames().webkitpresentationmodechangedEvent);
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to