Index: src/wp-admin/includes/class-wp-links-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-links-list-table.php	(revision 35983)
+++ src/wp-admin/includes/class-wp-links-list-table.php	(working copy)
@@ -160,7 +160,7 @@
 	}
 
 	/**
-	 * Handles the checkbox column ouput.
+	 * Handles the checkbox column output.
 	 *
 	 * @since 4.3.0
 	 * @access public
@@ -175,7 +175,7 @@
 	}
 
 	/**
-	 * Handles the link name column ouput.
+	 * Handles the link name column output.
 	 *
 	 * @since 4.3.0
 	 * @access public
@@ -185,14 +185,15 @@
 	public function column_name( $link ) {
 		$edit_link = get_edit_bookmark_link( $link );
 		?>
-		<strong><a class="row-title" href="<?php echo $edit_link ?>" title="<?php
-			echo esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $link->link_name ) );
-		?>"><?php echo $link->link_name ?></a></strong><br />
+		<strong><a class="row-title" href="<?php echo $edit_link ?>">
+			<span aria-hidden="true"><?php echo $link->link_name; ?></span>
+			<span class="screen-reader-text"><?php printf( __( 'Edit &#8220;%s&#8221;' ), $link->link_name ); ?></span>
+		</a></strong><br />
 		<?php
 	}
 
 	/**
-	 * Handles the link URL column ouput.
+	 * Handles the link URL column output.
 	 *
 	 * @since 4.3.0
 	 * @access public
@@ -201,7 +202,7 @@
 	 */
 	public function column_url( $link ) {
 		$short_url = url_shorten( $link->link_url );
-		echo "<a href='$link->link_url' title='". esc_attr( sprintf( __( 'Visit %s' ), $link->link_name ) )."'>$short_url</a>";
+		echo "<a href='$link->link_url'>$short_url</a>";
 	}
 
 	/**
@@ -233,7 +234,7 @@
 	}
 
 	/**
-	 * Handles the link relation column ouput.
+	 * Handles the link relation column output.
 	 *
 	 * @since 4.3.0
 	 * @access public
@@ -245,7 +246,7 @@
 	}
 
 	/**
-	 * Handles the link visibility column ouput.
+	 * Handles the link visibility column output.
 	 *
 	 * @since 4.3.0
 	 * @access public
@@ -261,7 +262,7 @@
 	}
 
 	/**
-	 * Handles the link rating column ouput.
+	 * Handles the link rating column output.
 	 *
 	 * @since 4.3.0
 	 * @access public
