Testcase for jQuery Ticket 4386
Cloning body doesn't work in IE6
by jitter
HTML
<p>test</p>
<button id="go"> go </button>
JavaScript
$("#go").click(function() {
alert( $.trim( $("body").html() ));
alert( $.trim( $("body").clone().html() ));
});