497734-1.xhtml (363B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script type="text/javascript"> 4 5 function boom() 6 { 7 8 div = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 9 div.appendChild(document.getElementById("v")); 10 document.body.appendChild(div); 11 } 12 13 </script> 14 </head> 15 16 <body onload="boom();"> 17 18 <video id="v"><source></source></video> 19 20 </body> 21 </html>