Index: /CKEditor/branches/versions/3.4.x/_source/plugins/autogrow/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/autogrow/plugin.js	(revision 5771)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/autogrow/plugin.js	(revision 5772)
@@ -11,12 +11,12 @@
 	{
 		var doc = editor.document,
-			documentElement = doc.getDocumentElement().$,
 			currentHeight = editor.window.getViewPaneSize().height,
 			newHeight;
 
+		// We can not use documentElement to calculate the height for IE (#6061).
 		if ( CKEDITOR.env.ie )
-			newHeight = documentElement.scrollHeight;
+			newHeight = doc.getBody().$.scrollHeight + 24;
 		else
-			newHeight = documentElement.offsetHeight;
+			newHeight = doc.getDocumentElement().$.offsetHeight;
 
 		var min = editor.config.autoGrow_minHeight,
