| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <title>test</title> | 2 <title>test</title> |
| 3 <body bgcolor="Silver"> | 3 <body bgcolor="Silver"> |
| 4 <video id='video1' src="test.webm" controls></video> | 4 <video id='video1' src="test.webm" controls></video> |
| 5 <script> | 5 <script> |
| 6 var video = document.getElementById('video1'); | 6 var video = document.getElementById('video1'); |
| 7 var mediaElement = video; | 7 var mediaElement = video; |
| 8 | 8 |
| 9 video.oncanplaythrough = function() { | 9 video.oncanplaythrough = function() { |
| 10 document.title = 'ready_to_play'; | 10 document.title = 'ready_to_play'; |
| 11 } | 11 } |
| 12 | 12 |
| 13 video.onended = function(e) { | 13 video.onended = function(e) { |
| 14 document.title = 'ended'; | 14 document.title = 'ended'; |
| 15 } | 15 } |
| 16 | 16 |
| 17 function playvideo() { | 17 function playvideo() { |
| 18 mediaElement.play(); | 18 mediaElement.play(); |
| 19 } | 19 } |
| 20 | 20 |
| 21 mediaElement.load(); |
| 21 </script> | 22 </script> |
| 22 <button id="button1" onclick="playvideo()">Click me</button> | 23 <button id="button1" onclick="playvideo()">Click me</button> |
| 23 </body> | 24 </body> |
| 24 </html> | 25 </html> |
| OLD | NEW |