| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 5 | 5 |
| 6 <script src=../media-file.js></script> | 6 <script src=../media-file.js></script> |
| 7 <script src=../video-test.js></script> | 7 <script src=../video-test.js></script> |
| 8 <script> | 8 <script> |
| 9 function removeActiveCue() | 9 function removeActiveCue() |
| 10 { | 10 { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 video.textTracks[0].mode = "showing"; | 41 video.textTracks[0].mode = "showing"; |
| 42 } | 42 } |
| 43 </script> | 43 </script> |
| 44 </head> | 44 </head> |
| 45 | 45 |
| 46 <body onload="startTest()"> | 46 <body onload="startTest()"> |
| 47 <p>Tests that removing an active cue does not crash the browser.</p> | 47 <p>Tests that removing an active cue does not crash the browser.</p> |
| 48 <video controls /> | 48 <video controls /> |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |