Index: main/resources/mgnl-resources/fckeditor/editor/fckeditor.html =================================================================== --- main/resources/mgnl-resources/fckeditor/editor/fckeditor.html (revision 4026) +++ main/resources/mgnl-resources/fckeditor/editor/fckeditor.html (working copy) @@ -267,7 +267,7 @@ // Gecko browsers doesn't calculate well the IFRAME size so we must // recalculate it every time the window size changes. -if ( FCKBrowserInfo.IsGecko && !FCKBrowserInfo.IsOpera ) +if ( FCKBrowserInfo.IsSafari || (FCKBrowserInfo.IsGecko && !FCKBrowserInfo.IsOpera )) { window.onresize = function( e ) { @@ -283,7 +283,7 @@ if ( eInnerElement ) { eInnerElement.style.height = '0px' ; - eInnerElement.style.height = ( oCell.scrollHeight - 2 ) + 'px' ; + eInnerElement.style.height = ( oCell.clientHeight ) + 'px' ; } } }