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

Side by Side Diff: LayoutTests/media/avtrack/forget-on-load.html

Issue 284513003: Implement AudioTrack, AudioTrackList, VideoTrack, and VideoTrackList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: global-constructors-listing-expected 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>AudioTrackList &amp; VideoTrackList after load()</title>
5 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script>
7 <script src="../media-file.js"></script>
8 </head>
9 <body>
10 <div id="log"></div>
11 <script>
12 async_test(function(t)
13 {
14 var e = document.createElement("video");
15 e.src = findMediaFile("video", "../content/test");
16
17 e.addEventListener("loadedmetadata", t.step_func(function()
18 {
19
20 assert_equals(e.audioTracks.length, 1, "audioTracks.length") ;
21 assert_equals(e.videoTracks.length, 1, "videoTracks.length") ;
22 assert_equals(e.videoTracks.selectedIndex, 0, "videoTracks.s electedIndex");
23
24 e.load();
25
26 assert_equals(e.audioTracks.length, 0, "audioTracks.length") ;
27 assert_equals(e.videoTracks.length, 0, "videoTracks.length") ;
28 assert_equals(e.videoTracks.selectedIndex, -1, "videoTracks. selectedIndex");
29
30 t.done();
31 }));
32 });
33 </script>
34 </body>
35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698