Possible workarounds:
1) the following CSS rule:
.rwExternalContent iframe
{
height: 100%;
}
OR
2) some JavaScript attached to the OnClientPageLoad event of the control:
function OnClientPageLoad(sender)
{
sender.get_contentFrame().style.height = "100%";
}