Index: wp-admin/includes/class-wp-posts-list-table.php
===================================================================
--- wp-admin/includes/class-wp-posts-list-table.php	(revision 23402)
+++ wp-admin/includes/class-wp-posts-list-table.php	(working copy)
@@ -542,7 +542,7 @@
 				$pad = str_repeat( '&#8212; ', $level );
 				echo "<td $attributes><strong>";
 				if ( $can_edit_post && $post->post_status != 'trash' ) {
-					echo '<a class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . $pad . $title . '</a>';
+					echo '<a tabindex="1" class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . $pad . $title . '</a>';
 				} else {
 					echo $pad . $title;
 				}
@@ -552,6 +552,8 @@
 					echo ' | ' . $post_type_object->labels->parent_item_colon . ' ' . esc_html( $parent_name );
 
 				echo "</strong>\n";
+				printf( '<a tabindex=1 class="quicklinksoff">%s<span class="screen-reader-text">for %s</span></a>', __( 'hide quick links' ), $title );
+				printf( '<a tabindex=1 class="showquicklinks">%s<span class="screen-reader-text">for %s</span></a>', __( 'show quick links' ), $title );
 
 				if ( $lock_holder && $can_edit_post && $post->post_status != 'trash' ) {
 					printf( '<span class="lock-holder">%s</span>',
@@ -563,27 +565,28 @@
 
 				$actions = array();
 				if ( $can_edit_post && 'trash' != $post->post_status ) {
-					$actions['edit'] = '<a href="' . get_edit_post_link( $post->ID, true ) . '" title="' . esc_attr( __( 'Edit this item' ) ) . '">' . __( 'Edit' ) . '</a>';
-					$actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr( __( 'Edit this item inline' ) ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
+					$actions['edit'] = '<a tabindex="1" href="' . get_edit_post_link( $post->ID, true ) . '" title="' . esc_attr( __( 'Edit this item' ) ) . '">' . __( 'Edit' ) . '</a>';
+					$actions['inline hide-if-no-js'] = '<a tabindex="1" href="#" class="editinline" title="' . esc_attr( __( 'Edit this item inline' ) ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
 				}
 				if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) {
 					if ( 'trash' == $post->post_status )
-						$actions['untrash'] = "<a title='" . esc_attr( __( 'Restore this item from the Trash' ) ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
+						$actions['untrash'] = "<a tabindex=\"1\" title='" . esc_attr( __( 'Restore this item from the Trash' ) ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
 					elseif ( EMPTY_TRASH_DAYS )
-						$actions['trash'] = "<a class='submitdelete' title='" . esc_attr( __( 'Move this item to the Trash' ) ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
+						$actions['trash'] = "<a tabindex=\"1\" class='submitdelete' title='" . esc_attr( __( 'Move this item to the Trash' ) ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
 					if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS )
-						$actions['delete'] = "<a class='submitdelete' title='" . esc_attr( __( 'Delete this item permanently' ) ) . "' href='" . get_delete_post_link( $post->ID, '', true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
+						$actions['delete'] = "<a tabindex=\"1\" class='submitdelete' title='" . esc_attr( __( 'Delete this item permanently' ) ) . "' href='" . get_delete_post_link( $post->ID, '', true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
 				}
 				if ( $post_type_object->public ) {
 					if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) {
 						if ( $can_edit_post )
-							$actions['view'] = '<a href="' . esc_url( add_query_arg( 'preview', 'true', get_permalink( $post->ID ) ) ) . '" title="' . esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'Preview' ) . '</a>';
+							$actions['view'] = '<a tabindex="1" href="' . esc_url( add_query_arg( 'preview', 'true', get_permalink( $post->ID ) ) ) . '" title="' . esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'Preview' ) . '</a>';
 					} elseif ( 'trash' != $post->post_status ) {
-						$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
+						$actions['view'] = '<a tabindex="1" href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
 					}
 				}
 
 				$actions = apply_filters( is_post_type_hierarchical( $post->post_type ) ? 'page_row_actions' : 'post_row_actions', $actions, $post );
+
 				echo $this->row_actions( $actions );
 
 				get_inline_data( $post );
Index: wp-admin/includes/class-wp-terms-list-table.php
===================================================================
--- wp-admin/includes/class-wp-terms-list-table.php	(revision 23402)
+++ wp-admin/includes/class-wp-terms-list-table.php	(working copy)
@@ -250,7 +250,7 @@
 		$qe_data = get_term( $tag->term_id, $taxonomy, OBJECT, 'edit' );
 		$edit_link = esc_url( get_edit_term_link( $tag->term_id, $taxonomy, $this->screen->post_type ) );
 
-		$out = '<strong><a class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $name ) ) . '">' . $name . '</a></strong><br />';
+		$out = '<strong><a tabindex="1" class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $name ) ) . '">' . $name . '</a></strong><br />';
 
 		$actions = array();
 		if ( current_user_can( $tax->cap->edit_terms ) ) {
Index: wp-admin/js/inline-edit-post.js
===================================================================
--- wp-admin/js/inline-edit-post.js	(revision 23402)
+++ wp-admin/js/inline-edit-post.js	(working copy)
@@ -69,6 +69,32 @@
 			t.revert();
 			$('select[name^="action"]').val('-1');
 		});
+
+		//show quick links action
+		$('td.post-title a.showquicklinks').on('click', function(e){
+			$(this).next().css("visibility", "visible");
+			$(this).prev().css("display", "inline");
+			$(this).css("display", "none");
+
+		});
+
+		$('td.post-title a.quicklinksoff').on('click', function(e){
+			$(this).next().next().css("visibility", "hidden");
+			$(this).next().css("display", "inline");
+			$(this).css("display", "none");
+		});
+
+		$('td.post-title a.quicklinksoff').on('keypress', function(e){
+			if ( 13 == e.which ) {
+				$(this).trigger( 'click' );
+			}
+		});
+
+		$('td.post-title a.showquicklinks').on('keypress', function(e){
+			if ( 13 == e.which ) {
+				$(this).trigger( 'click' );
+			}
+		});
 	},
 
 	toggle : function(el){
Index: wp-admin/css/wp-admin.css
===================================================================
--- wp-admin/css/wp-admin.css	(revision 23402)
+++ wp-admin/css/wp-admin.css	(working copy)
@@ -5834,6 +5834,18 @@
 	font-weight: bold;
 }
 
+.quicklinksoff {
+	display: none;
+}
+
+td.post-title:hover a.showquicklinks {
+	display: none;
+}
+
+td.post-title:hover a.quicklinksoff {
+	display: inline;
+}
+
 .column-author img, .column-username img {
 	float: left;
 	margin-right: 10px;
