Index: src/wp-admin/css/list-tables.css
===================================================================
--- src/wp-admin/css/list-tables.css	(revision 32694)
+++ src/wp-admin/css/list-tables.css	(working copy)
@@ -544,7 +544,7 @@
 	cursor: default;
 	height: 30px;
 	color: #555;
-	line-height: 2.5;
+	line-height: 30px;
 	font-size: 12px;
 }
 
@@ -563,10 +563,8 @@
 	padding: 0 10px 3px;
 	background: #eee;
 	background: rgba( 0, 0, 0, 0.05 );
-	display: inline-block;
 	font-size: 16px;
 	font-weight: normal;
-	line-height: 1.3333;
 }
 
 .tablenav .tablenav-pages a:hover,
@@ -873,6 +871,16 @@
 	line-height: 2.5;
 }
 
+.inline-edit-row fieldset fieldset legend {
+	width: 5em;
+	float: left;
+	line-height: 2.5;
+}
+
+.inline-edit-row fieldset fieldset label {
+	display: inline-block;
+}
+
 .inline-edit-row fieldset label.inline-edit-tags {
 	margin-top: 0;
 }
@@ -1616,7 +1624,6 @@
 
 	.tablenav-pages .pagination-links a {
 		padding: 8px 20px 11px;
-		display: inline;
 		font-size: 18px;
 		background: rgba(0, 0, 0, 0.05);
 	}
@@ -1964,3 +1971,4 @@
 		display: none;
 	}
 }
+
Index: src/wp-admin/edit-form-comment.php
===================================================================
--- src/wp-admin/edit-form-comment.php	(revision 32694)
+++ src/wp-admin/edit-form-comment.php	(working copy)
@@ -105,8 +105,13 @@
 $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
 ?>
 <span id="timestamp"><?php printf($stamp, $date); ?></span>&nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a>
-<div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0); ?></div>
+<div id='timestampdiv' class='hide-if-js'>
+<fieldset>
+<legend class="screen-reader-text"><?php _e( 'Date' ); ?></legend>
+<?php touch_time(('editcomment' == $action), 0); ?>
+</fieldset>
 </div>
+</div>
 
 <?php
 $post_id = $comment->comment_post_ID;
Index: src/wp-admin/includes/class-wp-posts-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-posts-list-table.php	(revision 32694)
+++ src/wp-admin/includes/class-wp-posts-list-table.php	(working copy)
@@ -1162,10 +1162,12 @@
 	endif; // post_type_supports title ?>
 
 	<?php if ( !$bulk ) : ?>
-			<label><span class="title"><?php _e( 'Date' ); ?></span></label>
+			<fieldset>
+			<legend><span class="title"><?php _e( 'Date' ); ?></span></legend>
 			<div class="inline-edit-date">
 				<?php touch_time( 1, 1, 0, 1 ); ?>
 			</div>
+			</fieldset>
 			<br class="clear" />
 	<?php endif; // $bulk
 
Index: src/wp-admin/includes/meta-boxes.php
===================================================================
--- src/wp-admin/includes/meta-boxes.php	(revision 32694)
+++ src/wp-admin/includes/meta-boxes.php	(working copy)
@@ -206,7 +206,12 @@
 	<span id="timestamp">
 	<?php printf($stamp, $date); ?></span>
 	<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit date and time' ); ?></span></a>
-	<div id="timestampdiv" class="hide-if-js"><?php touch_time(($action == 'edit'), 1); ?></div>
+	<div id="timestampdiv" class="hide-if-js">
+	<fieldset>
+	<legend class="screen-reader-text"><?php _e( 'Date' ); ?></legend>
+	<?php touch_time(($action == 'edit'), 1); ?>
+	</fieldset>
+</div>
 </div><?php // /misc-pub-section ?>
 <?php endif; ?>
 
Index: src/wp-admin/includes/template.php
===================================================================
--- src/wp-admin/includes/template.php	(revision 32694)
+++ src/wp-admin/includes/template.php	(working copy)
@@ -781,19 +781,19 @@
 	$cur_hh = gmdate( 'H', $time_adj );
 	$cur_mn = gmdate( 'i', $time_adj );
 
-	$month = '<label for="mm" class="screen-reader-text">' . __( 'Month' ) . '</label><select ' . ( $multi ? '' : 'id="mm" ' ) . 'name="mm"' . $tab_index_attribute . ">\n";
+	$month = '<label><span class="screen-reader-text">' . __( 'Month' ) . '</span><select ' . ( $multi ? '' : 'id="mm" ' ) . 'name="mm"' . $tab_index_attribute . ">\n";
 	for ( $i = 1; $i < 13; $i = $i +1 ) {
 		$monthnum = zeroise($i, 2);
 		$month .= "\t\t\t" . '<option value="' . $monthnum . '" ' . selected( $monthnum, $mm, false ) . '>';
 		/* translators: 1: month number (01, 02, etc.), 2: month abbreviation */
 		$month .= sprintf( __( '%1$s-%2$s' ), $monthnum, $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) ) ) . "</option>\n";
 	}
-	$month .= '</select>';
+	$month .= '</select></label>';
 
-	$day = '<label for="jj" class="screen-reader-text">' . __( 'Day' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="jj" ' ) . 'name="jj" value="' . $jj . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
-	$year = '<label for="aa" class="screen-reader-text">' . __( 'Year' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="aa" ' ) . 'name="aa" value="' . $aa . '" size="4" maxlength="4"' . $tab_index_attribute . ' autocomplete="off" />';
-	$hour = '<label for="hh" class="screen-reader-text">' . __( 'Hour' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
-	$minute = '<label for="mn" class="screen-reader-text">' . __( 'Minute' ) . '</label><input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
+	$day = '<label><span class="screen-reader-text">' . __( 'Day' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="jj" ' ) . 'name="jj" value="' . $jj . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></label>';
+	$year = '<label><span class="screen-reader-text">' . __( 'Year' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="aa" ' ) . 'name="aa" value="' . $aa . '" size="4" maxlength="4"' . $tab_index_attribute . ' autocomplete="off" /></label>';
+	$hour = '<label><span class="screen-reader-text">' . __( 'Hour' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></label>';
+	$minute = '<label><span class="screen-reader-text">' . __( 'Minute' ) . '</span><input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" /></label>';
 
 	echo '<div class="timestamp-wrap">';
 	/* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */
