Index: src/wp-admin/js/post.js
===================================================================
--- src/wp-admin/js/post.js	(revision 29766)
+++ src/wp-admin/js/post.js	(working copy)
@@ -484,26 +484,6 @@
 		$previewField.val('');
 	});
 
-	// This code is meant to allow tabbing from Title to Post content.
-	$('#title').on( 'keydown.editor-focus', function( event ) {
-		var editor, $textarea;
-
-		if ( event.keyCode === 9 && ! event.ctrlKey && ! event.altKey && ! event.shiftKey ) {
-			editor = typeof tinymce != 'undefined' && tinymce.get('content');
-			$textarea = $('#content');
-
-			if ( editor && ! editor.isHidden() ) {
-				editor.focus();
-			} else if ( $textarea.length ) {
-				$textarea.focus();
-			} else {
-				return;
-			}
-
-			event.preventDefault();
-		}
-	});
-
 	// Autosave new posts after a title is typed
 	if ( $( '#auto_draft' ).val() ) {
 		$( '#title' ).blur( function() {
