Index: src/wp-includes/js/mce-view.js
===================================================================
--- src/wp-includes/js/mce-view.js	(revision 31160)
+++ src/wp-includes/js/mce-view.js	(working copy)
@@ -207,8 +207,18 @@
 						iframeDoc.close();
 
 						resize = function() {
+							var $iframe, iframeDocHeight;
+
 							// Make sure the iframe still exists.
-							iframe.contentWindow && $( iframe ).height( $( iframeDoc.body ).height() );
+							if ( iframe.contentWindow ) {
+								$iframe = $( iframe );
+								iframeDocHeight = $( iframeDoc.body ).height();
+
+								if ( $iframe.height() !== iframeDocHeight ) {
+									$iframe.height( iframeDocHeight );
+									editor.nodeChanged();
+								}
+							}
 						};
 
 						if ( MutationObserver ) {
