Title: [171029] trunk/Source/WebCore
- Revision
- 171029
- Author
- [email protected]
- Date
- 2014-07-12 14:36:42 -0700 (Sat, 12 Jul 2014)
Log Message
[iOS Media] Start playback button should indicate when it can't play
https://bugs.webkit.org/show_bug.cgi?id=134851
Post-commit review with Eric Carlson on IRC.
* Modules/mediacontrols/mediaControlsiOS.js:
(ControllerIOS.prototype.updateStatusDisplay): Remove the line that sets the
class on the inline play button.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (171028 => 171029)
--- trunk/Source/WebCore/ChangeLog 2014-07-12 21:17:50 UTC (rev 171028)
+++ trunk/Source/WebCore/ChangeLog 2014-07-12 21:36:42 UTC (rev 171029)
@@ -1,3 +1,14 @@
+2014-07-12 Dean Jackson <[email protected]>
+
+ [iOS Media] Start playback button should indicate when it can't play
+ https://bugs.webkit.org/show_bug.cgi?id=134851
+
+ Post-commit review with Eric Carlson on IRC.
+
+ * Modules/mediacontrols/mediaControlsiOS.js:
+ (ControllerIOS.prototype.updateStatusDisplay): Remove the line that sets the
+ class on the inline play button.
+
2014-07-11 Dean Jackson <[email protected]>
[iOS Media] Start playback button should indicate when it can't play
Modified: trunk/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.js (171028 => 171029)
--- trunk/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.js 2014-07-12 21:17:50 UTC (rev 171028)
+++ trunk/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.js 2014-07-12 21:36:42 UTC (rev 171029)
@@ -435,7 +435,6 @@
updateStatusDisplay: function(event)
{
- this.controls.playButton.classList.toggle(this.ClassNames.failed, this.video.error !== null);
this.controls.startPlaybackButton.classList.toggle(this.ClassNames.failed, this.video.error !== null);
Controller.prototype.updateStatusDisplay.call(this, event);
},
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes