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

Side by Side Diff: LayoutTests/media/avtrack/gc.html

Issue 284513003: Implement AudioTrack, AudioTrackList, VideoTrack, and VideoTrackList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: nits 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>AudioTrack &amp; VideoTrack garbage collection</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 e.audioTracks.foo = 'foo';
20 e.audioTracks[0].bar = 'bar';
21 e.videoTracks.baz = 'baz';
22 e.videoTracks[0].qux = 'qux';
23
24 gc();
25
26 assert_equals(e.audioTracks.foo, 'foo');
27 assert_equals(e.audioTracks[0].bar, 'bar');
28 assert_equals(e.videoTracks.baz, 'baz');
29 assert_equals(e.videoTracks[0].qux, 'qux');
30
31 t.done();
32 }));
33 });
34 </script>
35 </body>
36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/media/avtrack/forget-on-load.html ('k') | LayoutTests/media/avtrack/getTrackById.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698