Comment #1 on issue 1305 by [email protected]: Pseudo body nodes should be
stylable
http://code.google.com/p/google-caja/issues/detail?id=1305
Also, reading document.body.innerHTML gives the DOM as expected, however,
setting document.body.innerHTML has no effect.
--<--
original
<script>
alert( document.body.innerHTML); // alerts original
alert(document.getElementsByTagName("body")[0].innerHTML); // alerts
original
document.body.innerHTML = "new content";
alert( document.body.innerHTML); // alerts original
</script>
-->--