This issue is actually fixed in 6.2 SP1. I am not sure why you are getting the same issue. Still, there is work around to resolve this:
Code:
getDocHeight: function (doc) {
doc = doc || document;
var body = doc.body,
html = doc.documentElement;
var height = Math.max(body.scrollHeight, body.offsetHeight,
html.clientHeight, html.scrollHeight, html.offsetHeight);
return height;
},
setIframeHeight: function (id) {
var ifrm = parent.document.getElementById(id);
if (ifrm) {
var doc = ifrm.contentDocument ? ifrm.contentDocument :
ifrm.contentWindow.document;
ifrm.style.visibility = 'hidden';
ifrm.style.height = "10px";
ifrm.style.height = CCweb.util.getDocHeight(doc) + 10 + "px";
ifrm.style.visibility = 'visible';
}
}
You can call function as setIframeHeight("ContentFrame") on page load. It will reset the iframe height and content will become scrollable.
Thanks,
Amogh