Index: user-edit.php
===================================================================
--- user-edit.php	(Revision 13330)
+++ user-edit.php	(Arbeitskopie)
@@ -175,17 +175,20 @@
 <input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" />
 </p>
 
-<h3><?php _e('Personal Options'); ?></h3>
+<div id="form-table-personal-options">
 
+<h3 id="form-table-personal-options-title"><?php _e('Personal Options'); ?></h3>
+
 <table class="form-table">
+
 <?php if ( rich_edit_exists() && !( IS_PROFILE_PAGE && !$user_can_edit ) ) : // don't bother showing the option if the editor has been removed ?>
-	<tr>
+	<tr id="form-table-personal-options-visual-editor">
 		<th scope="row"><?php _e('Visual Editor')?></th>
 		<td><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="false" <?php checked('false', $profileuser->rich_editing); ?> /> <?php _e('Disable the visual editor when writing'); ?></label></td>
 	</tr>
 <?php endif; ?>
 <?php if ( count($_wp_admin_css_colors) > 1 ) : ?>
-<tr>
+<tr id="form-table-personal-options-admin-color-scheme">
 <th scope="row"><?php _e('Admin Color Scheme')?></th>
 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Admin Color Scheme')?></span></legend>
 <?php
@@ -210,7 +213,7 @@
 <?php
 endif;
 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
-<tr>
+<tr id="form-table-personal-options-keyboard-shortcuts">
 <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th>
 <td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php if ( !empty($profileuser->comment_shortcuts) ) checked('true', $profileuser->comment_shortcuts); ?> /> <?php _e('Enable keyboard shortcuts for comment moderation.'); ?></label> <?php _e('<a href="http://codex.wordpress.org/Keyboard_Shortcuts">More information</a>'); ?></td>
 </tr>
@@ -224,16 +227,21 @@
 		do_action('profile_personal_options', $profileuser);
 ?>
 
-<h3><?php _e('Name') ?></h3>
+</div>
 
-<table class="form-table">
-	<tr>
+<div id="form-table-name">
+
+<h3 id="form-table-name-title"><?php _e('Name') ?></h3>
+
+<table class="form-table" >
+	
+	<tr id="form-table-name-user-login">
 		<th><label for="user_login"><?php _e('Username'); ?></label></th>
 		<td><input type="text" name="user_login" id="user_login" value="<?php echo esc_attr($profileuser->user_login); ?>" disabled="disabled" class="regular-text" /> <span class="description"><?php _e('Your username cannot be changed.'); ?></span></td>
 	</tr>
 
 <?php if ( !IS_PROFILE_PAGE ): ?>
-<tr><th><label for="role"><?php _e('Role:') ?></label></th>
+<tr id="form-table-name-role"><th><label for="role"><?php _e('Role:') ?></label></th>
 <td><select name="role" id="role">
 <?php
 // Get the highest/primary role for this user
@@ -253,22 +261,22 @@
 </select></td></tr>
 <?php endif; //!IS_PROFILE_PAGE ?>
 
-<tr>
+<tr id="form-table-name-first-name">
 	<th><label for="first_name"><?php _e('First Name') ?></label></th>
 	<td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr($profileuser->first_name) ?>" class="regular-text" /></td>
 </tr>
 
-<tr>
+<tr id="form-table-name-last-name">
 	<th><label for="last_name"><?php _e('Last Name') ?></label></th>
 	<td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr($profileuser->last_name) ?>" class="regular-text" /></td>
 </tr>
 
-<tr>
+<tr id="form-table-name-nickname">
 	<th><label for="nickname"><?php _e('Nickname'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
 	<td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr($profileuser->nickname) ?>" class="regular-text" /></td>
 </tr>
 
-<tr>
+<tr id="form-table-name-display-name">
 	<th><label for="display_name"><?php _e('Display name publicly as') ?></label></th>
 	<td>
 		<select name="display_name" id="display_name">
@@ -298,15 +306,19 @@
 </tr>
 </table>
 
-<h3><?php _e('Contact Info') ?></h3>
+</div>
 
+<div id="form-table-contact-info">
+
+<h3 id="form-table-contact-info-title"><?php _e('Contact Info') ?></h3>
+
 <table class="form-table">
-<tr>
+<tr id="form-table-contact-info-email">
 	<th><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
 	<td><input type="text" name="email" id="email" value="<?php echo esc_attr($profileuser->user_email) ?>" class="regular-text" /></td>
 </tr>
 
-<tr>
+<tr id="form-table-contact-info-url">
 	<th><label for="url"><?php _e('Website') ?></label></th>
 	<td><input type="text" name="url" id="url" value="<?php echo esc_attr($profileuser->user_url) ?>" class="regular-text code" /></td>
 </tr>
@@ -314,7 +326,7 @@
 <?php
 	foreach (_wp_get_user_contactmethods() as $name => $desc) {
 ?>
-<tr>
+<tr id="form-table-contact-info-<?php echo $name; ?>">
 	<th><label for="<?php echo $name; ?>"><?php echo apply_filters('user_'.$name.'_label', $desc); ?></label></th>
 	<td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr($profileuser->$name) ?>" class="regular-text" /></td>
 </tr>
@@ -323,10 +335,14 @@
 ?>
 </table>
 
-<h3><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3>
+</div>
 
+<div id="form-table-about-yourself">
+
+<h3 id="form-table-about-yourself-title"><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3>
+
 <table class="form-table">
-<tr>
+<tr id="form-table-about-yourself-description">
 	<th><label for="description"><?php _e('Biographical Info'); ?></label></th>
 	<td><textarea name="description" id="description" rows="5" cols="30"><?php echo esc_html($profileuser->description); ?></textarea><br />
 	<span class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></span></td>
@@ -347,6 +363,8 @@
 <?php endif; ?>
 </table>
 
+</div>
+
 <?php
 	if ( IS_PROFILE_PAGE ) {
 		do_action('show_user_profile', $profileuser);
@@ -356,6 +374,8 @@
 ?>
 
 <?php if ( count($profileuser->caps) > count($profileuser->roles) && apply_filters('additional_capabilities_display', true, $profileuser) ) { ?>
+<div id="form-table-caps">
+
 <br class="clear" />
 	<table width="99%" style="border: none;" cellspacing="2" cellpadding="3" class="editform">
 		<tr>
@@ -373,6 +393,7 @@
 			?></td>
 		</tr>
 	</table>
+</div>
 <?php } ?>
 
 <p class="submit">
