Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: LayoutTests/http/tests/media/video-load-metadata-decode-error.html

Issue 330593005: HTMLMediaElement::webMediaPlayer() should never be null if m_readyState >= HAVE_METADATA (media eng… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed emptied event Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>throttled loading metadata</title>
4 <script src=../../../media-resources/media-file.js></script>
5 <script src=../../../media-resources/video-test.js></script>
6 <script>
7 function loadedmetadata(e)
8 {
9 logResult(true, "loaded metadata of media file");
10 }
11
12 function error(e)
13 {
14 logResult(true, "failed to load media file");
acolwell GONE FROM CHROMIUM 2014/06/18 23:46:27 nit: Just use consoleWrite() here and above since
Srirama 2014/06/19 03:35:15 will do it. On 2014/06/18 23:46:27, acolwell wrote
15 testExpected("video.networkState", 1);
acolwell GONE FROM CHROMIUM 2014/06/18 23:46:27 s/1/HTMLMediaElement.NETWORK_IDLE to make it clear
Srirama 2014/06/19 03:35:15 will do it. On 2014/06/18 23:46:27, acolwell wrote
16 endTest();
17 }
18
19 function start()
20 {
21 findMediaElement();
22
23 waitForEvent('loadedmetadata', loadedmetadata);
24 waitForEvent("error", error);
25
26 var movie = findMediaFile("video", "resources/test");
27 var type = mimeTypeForExtension(movie.split('.').pop());
28 video.src = "http://127.0.0.1:8000/media/video-load-metadata-decode- error.cgi?name=" + movie + "&type=" + type;
acolwell GONE FROM CHROMIUM 2014/06/18 23:46:27 nit: Do you really need the scheme and host? Will
Srirama 2014/06/19 03:35:16 May not be required, will check and remove. On 201
29 video.load();
30 video.play();
acolwell GONE FROM CHROMIUM 2014/06/18 23:46:27 You should only need load() or play(). I don't thi
Srirama 2014/06/19 03:35:16 I think there is a problem without play(). May be
31 }
32 </script>
33 </head>
34 <body onload="start()">
35 <video id="video"></video>
36 <p>
37 This test case simulates a decode error after loading meta data of a video.<br/> <br/>
38 </p>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698