Closed
Bug 1226115
Opened 9 years ago
Closed 9 years ago
Seeking to end of video, shows video continue playing
Categories
(Core :: Audio/Video: Playback, defect)
Core
Audio/Video: Playback
Tracking
()
RESOLVED
INVALID
Tracking | Status | |
---|---|---|
firefox45 | --- | affected |
People
(Reporter: jya, Unassigned)
References
Details
Something wrong with seeks here.
doing something like:
function startTest(e) {
var v = e.target;
v.currentTime = v.duration + 5;
}
v.addEventListener("loadedmetadata", startTest, false);
Shows that the seeked event is fired. That v.currentTime = v.duration like it should.
Yet, you can see the video playing from the start to the end.
Reporter | ||
Comment 1•9 years ago
|
||
oh... my bad.
I was looking at the mochitest dom/media/test/test_seek_out_of_range.html
But after "seeked" it does v.play() which properly cause playback to restart as we've reached the end of the media.
"Sets the paused attribute to false, loading the media resource and beginning playback if necessary. If the playback had ended, will restart it from the start."
Reporter | ||
Updated•9 years ago
|
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•