| 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 | 9 |
| 10 var cues; | 10 var cues; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 run("textCue.align = 'end'"); | 91 run("textCue.align = 'end'"); |
| 92 testExpected("textCue.align", "end"); | 92 testExpected("textCue.align", "end"); |
| 93 | 93 |
| 94 consoleWrite(""); | 94 consoleWrite(""); |
| 95 endTest(); | 95 endTest(); |
| 96 } | 96 } |
| 97 | 97 |
| 98 </script> | 98 </script> |
| 99 </head> | 99 </head> |
| 100 <body> | 100 <body> |
| 101 <p>Tests modifying attributes of a TextTrackCue</p> | 101 <p>Tests modifying attributes of a VTTCue</p> |
| 102 <video controls> | 102 <video controls> |
| 103 <track id="captions" src="captions-webvtt/captions.vtt" kind="captio
ns" onload="trackLoaded()" default> | 103 <track id="captions" src="captions-webvtt/captions.vtt" kind="captio
ns" onload="trackLoaded()" default> |
| 104 </video> | 104 </video> |
| 105 </body> | 105 </body> |
| 106 </html> | 106 </html> |
| OLD | NEW |