﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
14271	By pressing ENTER below a table in an enumerated list item, the whole list item will be deleted	compu		"== Steps to reproduce ==

1. Insert an enumerated list in CKEditor
2. Write ""Hello World"" as first item in this list
3. Press SHIFT + ENTER for simple linebreak without paragraph
4. Insert a table (e.g. with default settings: 3 lines, 2 columns)
5. Place the cursor directly below the table
6. Press ENTER
Now the whole enumeration is deleted.

Alternatively you can just paste the following generated code into the source-view, go back to wysiwyg-view, place your cursor in the line directly after the table and press ENTER
{{{
#!div style=""font-size: 80%""
{{{
<ol>
	<li>Hello World
	<table border=""1"" cellpadding=""1"" cellspacing=""1"" style=""width:500px"">
		<tbody>
			<tr>
				<td>a</td>
				<td>b</td>
			</tr>
			<tr>
				<td>c</td>
				<td>d</td>
			</tr>
			<tr>
				<td>e</td>
				<td>f</td>
			</tr>
		</tbody>
	</table>

	<p>&nbsp;</p>
	</li>
</ol>
}}}
}}}


== Expected result ==
We would expect either:
- a linebreak after pressing ENTER, but having the possibility to create another enumeration item ""2.""
or:
- after inserting the table another enumeration item is automatically generated and the cursor is placed in ""2.""

== Actual result ==
The whole enumeration item ""1."" including the table is deleted, by just pressing ENTER.

== Other details (browser, OS, CKEditor version, installed plugins) ==
This is reproducible with the following browsers in the current official CKEditor Demo, but also in older versions of CKEditor:
Firefox 42, Chrome 47, Internet Explorer 11,"	Bug	confirmed	Normal		General	4.5.6		enumeration, table	
