| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 i = 0; | 4 i = 0; |
| 5 document.addEventListener('readystatechange', function() { | 5 document.addEventListener('readystatechange', function() { |
| 6 if (i == 1) | 6 if (i == 1) |
| 7 parent.r(); | 7 parent.r(); |
| 8 i++; | 8 i++; |
| 9 }); | 9 }); |
| 10 | 10 |
| 11 window.addEventListener('DOMContentLoaded', function() { | 11 window.addEventListener('DOMContentLoaded', function() { |
| 12 document.getElementById("v").load(); | 12 document.getElementById("v").load(); |
| 13 document.body.removeChild(document.getElementById("v")); | 13 document.body.removeChild(document.getElementById("v")); |
| 14 }); | 14 }); |
| 15 | 15 |
| 16 </script> | 16 </script> |
| 17 </head> | 17 </head> |
| 18 <body> | 18 <body> |
| 19 <video id=v src=empty.ogv></video> | 19 <video id=v src=empty.ogv></video> |
| 20 </body> | 20 </body> |
| 21 </html> | 21 </html> |
| OLD | NEW |