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

Side by Side Diff: LayoutTests/http/tests/media/media-source/webkitmediasource-sourcebufferlist-crash.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="/js-test-resources/js-test-pre.js"></script> 4 <script src="/js-test-resources/js-test.js"></script>
5 <script src="/media-resources/video-test.js"></script> 5 <script src="/media-resources/video-test.js"></script>
6 <script type="text/javascript"> 6 <script type="text/javascript">
7 function onSourceOpen(e) 7 function onSourceOpen(e)
8 { 8 {
9 consoleWrite("Calling addSourceBuffer()"); 9 consoleWrite("Calling addSourceBuffer()");
10 e.target.addSourceBuffer('video/webm;codecs="vp8"'); 10 e.target.addSourceBuffer('video/webm;codecs="vp8"');
11 11
12 consoleWrite("Running garbage collector to cleanup the SourceBuf fer reference returned by addSourceBuffer()"); 12 consoleWrite("Running garbage collector to cleanup the SourceBuf fer reference returned by addSourceBuffer()");
13 gc(); 13 gc();
14 14
(...skipping 16 matching lines...) Expand all
31 31
32 video.src = URL.createObjectURL(mediaSource); 32 video.src = URL.createObjectURL(mediaSource);
33 } 33 }
34 </script> 34 </script>
35 </head> 35 </head>
36 <body onload="main()"> 36 <body onload="main()">
37 <video id="v"></video> 37 <video id="v"></video>
38 <p>Verify that we don't crash on close if the MediaSource.sourceBuffers ho lds the last reference to its SourceBuffer objects.</p> 38 <p>Verify that we don't crash on close if the MediaSource.sourceBuffers ho lds the last reference to its SourceBuffer objects.</p>
39 </body> 39 </body>
40 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698