﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7241	Select table adds <br>	Frederico Caldeira Knabben		" 1. Load this HTML:

{{{
<table>
	<tbody>
		<tr>
			<td>cell1</td>
			<td>cell2</td>
		</tr>
		<tr>
			<td>cell3</td>
			<td>cell4</td>
		</tr>
	</tbody>
</table>
}}}

 2. Click inside any table cell.
 3. In the elements path, click on ""table"".

Note that an additional space is appended to the bottom of the table.

In source view, this is what we have:

{{{
<table>
	<br />
	<tbody>
		<tr>
			<td>
				cell1</td>
			<td>
				cell2</td>
		</tr>
		<tr>
			<td>
				cell3</td>
			<td>
				cell4</td>
		</tr>
	</tbody>
</table>
<p>
	&nbsp;</p>
}}}

Both the <br> and the <p> are unwanted.

Introduced with CKEditor 3.5.1."	Bug	closed	Normal		Core : Tables	3.5.1	fixed		
