Title: [184496] branches/safari-601.1.32.2-branch/Source/WebCore
Revision
184496
Author
matthew_han...@apple.com
Date
2015-05-18 10:01:09 -0700 (Mon, 18 May 2015)

Log Message

Merge r184360. rdar://problem/20865442

Modified Paths

Diff

Modified: branches/safari-601.1.32.2-branch/Source/WebCore/ChangeLog (184495 => 184496)


--- branches/safari-601.1.32.2-branch/Source/WebCore/ChangeLog	2015-05-18 17:01:03 UTC (rev 184495)
+++ branches/safari-601.1.32.2-branch/Source/WebCore/ChangeLog	2015-05-18 17:01:09 UTC (rev 184496)
@@ -1,5 +1,26 @@
 2015-05-18  Matthew Hanson  <matthew_han...@apple.com>
 
+        Merge r184360. rdar://problem/20865442
+
+    2015-05-14  Dean Jackson  <d...@apple.com>
+
+            MediaControls: controls are live even when invisible
+            https://bugs.webkit.org/show_bug.cgi?id=145029
+            <rdar://problem/20865442>
+
+            Reviewed by Jer Noble.
+
+            When the controls are invisible they should ignore touch/mouse
+            events.
+
+            * Modules/mediacontrols/mediaControlsiOS.css: Add pointer-events: none where appropriate.
+            (video::-webkit-media-controls-panel-container):
+            (video::-webkit-media-controls-panel-background):
+            (video::-webkit-media-controls-panel):
+            (video::-webkit-media-controls-panel.paused):
+
+2015-05-18  Matthew Hanson  <matthew_han...@apple.com>
+
         Merge r184353. rdar://problem/20809399
 
     2015-05-14  Myles C. Maxfield  <mmaxfi...@apple.com>

Modified: branches/safari-601.1.32.2-branch/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css (184495 => 184496)


--- branches/safari-601.1.32.2-branch/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css	2015-05-18 17:01:03 UTC (rev 184495)
+++ branches/safari-601.1.32.2-branch/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css	2015-05-18 17:01:09 UTC (rev 184496)
@@ -100,6 +100,7 @@
     height: 50px;
     position: absolute;
     bottom: 0;
+    pointer-events: none;
 }
 
 audio::-webkit-media-controls-panel-container {
@@ -118,6 +119,7 @@
     -webkit-appearance: media-controls-light-bar-background;
     transition: opacity 0.25s linear;
     opacity: 0;
+    pointer-events: none;
 }
 
 audio::-webkit-media-controls-panel-background {
@@ -157,6 +159,7 @@
 video::-webkit-media-controls-panel {
     height: 50px;
     opacity: 0;
+    pointer-events: none;
     -webkit-transform: translate3d(0, 0, 0);
 }
 
@@ -167,6 +170,7 @@
 
 video::-webkit-media-controls-panel.show,
 video::-webkit-media-controls-panel.paused {
+    pointer-events: auto;
     opacity: 1;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to