Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script>
<![CDATA[
function boom()
{
while (document.documentElement.firstChild) {
document.documentElement.firstChild.remove();
}
var td = document.createElementNS("http://www.w3.org/1999/xhtml", "td");
td.setAttributeNS(null, "contenteditable", "true");
(document.documentElement).appendChild(td);
var head = document.createElementNS("http://www.w3.org/1999/xhtml", "head");
(document.documentElement).appendChild(head);
head.appendChild(td);
}
window.addEventListener("load", boom);
]]>
</script>
</head>
<body></body>
</html>