Changeset 190054 in webkit
- Timestamp:
- Sep 21, 2015, 1:53:01 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r190053 r190054 1 2015-09-21 ChangSeok Oh <changseok.oh@collabora.com> 2 3 [GTK] media controls does not show up when playing video finishes. 4 https://bugs.webkit.org/show_bug.cgi?id=149112 5 6 Reviewed by Philippe Normand. 7 8 * media/media-controls-timeline-updates-after-playing-expected.txt: Added. 9 * media/media-controls-timeline-updates-after-playing.html: Added. 10 1 11 2015-09-21 ChangSeok Oh <changseok.oh@collabora.com> 2 12 -
trunk/Source/WebCore/ChangeLog
r190053 r190054 1 2015-09-21 ChangSeok Oh <changseok.oh@collabora.com> 2 3 [GTK] media controls does not show up when playing video finishes. 4 https://bugs.webkit.org/show_bug.cgi?id=149112 5 6 Reviewed by Philippe Normand. 7 8 GTK port does not show controls after playing video. This behavior is different 9 from what Mac port does. They do show controls when playing video finishes. 10 At least, we should update the timeline before showing it up not to show incorrect numbers 11 when reappearing. 12 13 Test: media/media-controls-timeline-updates-after-playing.html 14 15 * Modules/mediacontrols/mediaControlsBase.js: 16 (Controller.prototype.setPlaying): 17 (Controller.prototype.showControls): 18 1 19 2015-09-21 ChangSeok Oh <changseok.oh@collabora.com> 2 20 -
trunk/Source/WebCore/Modules/mediacontrols/mediaControlsBase.js
r190053 r190054 999 999 this.controls.playButton.classList.add(this.ClassNames.paused); 1000 1000 this.controls.playButton.setAttribute('aria-label', this.UIString('Play')); 1001 this.showControls(); 1001 1002 } else { 1002 1003 this.controls.panel.classList.remove(this.ClassNames.paused); … … 1014 1015 this.controls.panel.classList.remove(this.ClassNames.hidden); 1015 1016 1017 this.updateTime(); 1016 1018 this.setNeedsTimelineMetricsUpdate(); 1017 1019 },
Note:
See TracChangeset
for help on using the changeset viewer.