OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../media-file.js"></script> | 4 <script src="../media-file.js"></script> |
5 <script src="../video-test.js"></script> | 5 <script src="../video-test.js"></script> |
6 <script type="text/javascript"> | 6 <script type="text/javascript"> |
7 var firstSeek = true; | 7 var firstSeek = true; |
8 | 8 |
9 function seeked() | 9 function seeked() |
10 { | 10 { |
(...skipping 26 matching lines...) Expand all Loading... |
37 <body onload=loaded()> | 37 <body onload=loaded()> |
38 <video> | 38 <video> |
39 <track default="" src="captions-webvtt/captions-gaps.vtt"> | 39 <track default="" src="captions-webvtt/captions-gaps.vtt"> |
40 </video> | 40 </video> |
41 <div> | 41 <div> |
42 This test makes sure that removing a track by setting video.innerHTML
doesn't crash (https://bugs.webkit.org/show_bug.cgi?id=100981). | 42 This test makes sure that removing a track by setting video.innerHTML
doesn't crash (https://bugs.webkit.org/show_bug.cgi?id=100981). |
43 <p>If this test does not crash, it passes.</p> | 43 <p>If this test does not crash, it passes.</p> |
44 </div> | 44 </div> |
45 </body> | 45 </body> |
46 </html> | 46 </html> |
OLD | NEW |