| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 function goFullscreen(id) { | 4 function goFullscreen(id) { |
| 5 var element = document.getElementById(id); | 5 var element = document.getElementById(id); |
| 6 if (element.webkitRequestFullScreen) { | 6 if (element.webkitRequestFullScreen) { |
| 7 element.webkitRequestFullScreen(); | 7 element.webkitRequestFullScreen(); |
| 8 } | 8 } |
| 9 } | 9 } |
| 10 | 10 |
| 11 addEventListener('Loaded', function() { | 11 addEventListener('Loaded', function() { |
| 12 document.getElementById('video').addEventListener('play', function() { | 12 document.getElementById('video').addEventListener('play', function() { |
| 13 console.log('Video Played'); | 13 console.log('Video Played'); |
| 14 }, false); | 14 }, false); |
| 15 }, false); | 15 }, false); |
| 16 </script> | 16 </script> |
| 17 </head> | 17 </head> |
| 18 <body> | 18 <body> |
| 19 </script></head><body> | 19 </script></head><body> |
| 20 <button autofocus style ='padding:1024px 1024px;' onclick="goFullscreen('video')
; return false">Big enough you can't miss it</button> | 20 <button autofocus style ='padding:1024px 1024px;' onclick="goFullscreen('video')
; return false">Big enough you can't miss it</button> |
| 21 <p></p> | 21 <p></p> |
| 22 <video style = 'width: 10px; height: 10px;' id='video' controls> | 22 <video style = 'width: 10px; height: 10px;' id='video' controls> |
| 23 <source id="webm" src="VIDEO_FILE_URL" type="video/webm"> | 23 <source id="webm" src="VIDEO_FILE_URL" type="video/webm"> |
| 24 </video> | 24 </video> |
| 25 </body> | 25 </body> |
| 26 </html> | 26 </html> |
| OLD | NEW |