Index: src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
===================================================================
--- src/wp-includes/js/tinymce/plugins/wordpress/plugin.js	(revision 27371)
+++ src/wp-includes/js/tinymce/plugins/wordpress/plugin.js	(working copy)
@@ -443,6 +443,13 @@
 		editor.dom.bind( editor.getBody(), 'dragstart', function() {
 			_hideButtons();
 		});
+
+		editor.dom.bind( editor.getWin(), 'dragover', function(e) {
+			if ( typeof window.jQuery !== 'undefined' ) {
+				// Propagate the event to its container for the parent window to catch.
+				jQuery( editor.getContainer() ).trigger(e);
+			}
+		});
 	});
 
 	editor.on( 'BeforeExecCommand', function() {
