1 <html xmlns=
"http://www.w3.org/1999/xhtml">
8 while (document
.documentElement
.firstChild
) {
9 document
.documentElement
.firstChild
.remove();
12 var td
= document
.createElementNS("http://www.w3.org/1999/xhtml", "td");
13 td
.setAttributeNS(null, "contenteditable", "true");
14 (document
.documentElement
).appendChild(td
);
15 var head
= document
.createElementNS("http://www.w3.org/1999/xhtml", "head");
16 (document
.documentElement
).appendChild(head
);
21 window
.addEventListener("load", boom
);