Closed
Bug 1244489
Opened 9 years ago
Closed 9 years ago
Intermittent test_LoadedDataFired_mp4.html | must fire playing at start - got 0.816852, expected +0
Categories
(Core :: Audio/Video: Playback, defect, P5)
Core
Audio/Video: Playback
Tracking
()
RESOLVED
FIXED
mozilla51
People
(Reporter: philor, Unassigned)
Details
(Keywords: intermittent-failure)
Attachments
(1 file)
|
58 bytes,
text/x-review-board-request
|
Details |
Updated•9 years ago
|
Priority: -- → P5
Updated•9 years ago
|
Component: Audio/Video → Audio/Video: Playback
| Comment hidden (mozreview-request) |
Comment 2•9 years ago
|
||
| mozreview-review | ||
Comment on attachment 8784206 [details]
Bug 1244489: Do not expect currentTime to always be 0 by the time playing is fired.
https://reviewboard.mozilla.org/r/73746/#review71584
::: dom/media/mediasource/test/test_LoadedDataFired_mp4.html:25
(Diff revision 1)
> is(el.currentTime, 0, "must fire loadeddata at start");
> });
> el.addEventListener("playing", function() {
> ok(el.buffered.length > 0, "data is buffered");
> is(el.buffered.start(0), 0, "must fire playing when data has been loaded");
> - is(el.currentTime, 0, "must fire playing at start");
> + ok(el.currentTime >= 0, "must fire playing at start");
Change the message to "must have started playback" or something like that.
Attachment #8784206 -
Flags: review+
| Comment hidden (mozreview-request) |
| Comment hidden (mozreview-request) |
| Comment hidden (mozreview-request) |
Pushed by jyavenard@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/687db967e443
Do not expect currentTime to always be 0 by the time playing is fired. r=jwwang
Comment 7•9 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 9 years ago
status-firefox51:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla51
You need to log in
before you can comment on or make changes to this bug.
Description
•