Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 8011)
+++ wp-includes/post-template.php	(working copy)
@@ -677,7 +677,7 @@
 				$actions = '';
 
 			$rows .= "<tr$class>\n";
-			$rows .= "\t<th style='white-space: nowrap' scope='row'><input type='radio' name='left' value='$revision->ID'$left_checked /><input type='radio' name='right' value='$revision->ID'$right_checked />\n";
+			$rows .= "\t<th style='white-space: nowrap' scope='row'><input type='radio' name='left' value='$revision->ID'$left_checked /><input type='radio' name='right' value='$revision->ID'$right_checked /></th>\n";
 			$rows .= "\t<td>$date</td>\n";
 			$rows .= "\t<td>$name</td>\n";
 			$rows .= "\t<td class='action-links'>$actions</td>\n";
@@ -707,10 +707,12 @@
 	<col style="width: 33%" />
 	<col style="width: 33%" />
 <thead>
+<tr>
 	<th scope="col"></th>
 	<th scope="col"><?php _e( 'Date Created' ); ?></th>
 	<th scope="col"><?php _e( 'Author' ); ?></th>
 	<th scope="col" class="action-links"><?php _e( 'Actions' ); ?></th>
+</tr>
 </thead>
 <tbody>
 
@@ -719,6 +721,8 @@
 </tbody>
 </table>
 
+</form>
+
 <?php
 	else :
 		echo "<ul class='post-revisions'>\n";
Index: wp-admin/wp-admin.css
===================================================================
--- wp-admin/wp-admin.css	(revision 8011)
+++ wp-admin/wp-admin.css	(working copy)
@@ -927,9 +927,12 @@
 	margin-right: 5px
 }
 
-.form-table pre {
+.form-table .pre {
 	padding: 8px;
 	margin: 0;
+}
+
+.pre {
 	/* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */
 	white-space: pre-wrap; /* css-3 */
 	white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
Index: wp-admin/revision.php
===================================================================
--- wp-admin/revision.php	(revision 8011)
+++ wp-admin/revision.php	(working copy)
@@ -146,7 +146,7 @@
 	<th scope="col" class="th-full">
 		<span class="alignleft"><?php printf( __('Older: %s'), wp_post_revision_title( $left_revision ) ); ?></span>
 		<span class="alignright"><?php printf( __('Newer: %s'), wp_post_revision_title( $right_revision ) ); ?></span>
-	</td>
+	</th>
 </tr>
 <?php endif;
 
@@ -167,7 +167,7 @@
 
 	<tr id="revision-field-<?php echo $field; ?>">
 		<th scope="row"><?php echo wp_specialchars( $field_title ); ?></th>
-		<td><pre><?php echo $content; ?></pre></td>
+		<td><div class="pre"><?php echo $content; ?></div></td>
 	</tr>
 
 	<?php
@@ -200,4 +200,10 @@
 
 wp_list_post_revisions( $post, $args );
 
+?>
+
+</div>
+
+<?php
+
 require_once( 'admin-footer.php' );
Index: wp-admin/css/colors-fresh.css
===================================================================
--- wp-admin/css/colors-fresh.css	(revision 8011)
+++ wp-admin/css/colors-fresh.css	(working copy)
@@ -2,7 +2,7 @@
 	border-color: #999;
 }
 
-body, .form-table pre {
+body, .form-table .pre {
 	background-color: #fff;
 	color: #333;
 }
Index: wp-admin/css/colors-classic.css
===================================================================
--- wp-admin/css/colors-classic.css	(revision 8011)
+++ wp-admin/css/colors-classic.css	(working copy)
@@ -2,7 +2,7 @@
 	border-color: #999;
 }
 
-body, .form-table pre {
+body, .form-table .pre {
 	background-color: #fff;
 	color: #333;
 }
