Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script>
function boom()
{
var circle = document.getElementById("circle");
document.removeChild(document.documentElement);
document.appendChild(circle);
}
</script>
</head>
<body onload="boom()">
<svg:circle id="circle" />
</body>
</html>