Copiar documento DOM sin referencia

BodyCopy = document.body.cloneNode(true);
// ...
document.body = BodyCopy;
Itchy Iguana