Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script type="text/javascript">
function boom()
{
div = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
div.appendChild(document.getElementById("v"));
document.body.appendChild(div);
}
</script>
</head>
<body onload="boom();">
<video id="v"><source></source></video>
</body>
</html>