﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
13840	Automatic Paragraph Closing Creates Empty Paragraph	Aron Pasieka		"== Steps to reproduce ==

1. In Source mode, create a paragraph tag that contains a div, e.g. 
{{{
<p>Lorem<div>ipsum</div>dolor...</p>
<p>... sit amet...</p> 
}}}
2. Toggle back to WYSIWYG mode.

== Expected result ==
Paragraph tags have been closed and (in the above example) we are left with 4 block tags.
{{{
<p>Lorem<p>
<div>ipsum</div>
<p>dolor...</p>
<p>... sit amet...</p>
}}}
== Actual result ==
An empty paragraph has been added after the repaired paragraph.
{{{
<p>Lorem<p>
<p>ipsum</p>
<p>dolor...</p>
<p>&nbsp;</p>
<p>... sit amet...</p>
}}}
(And the div has been replaced by a p, but that's a separate concern.)
== Other details (browser, OS, CKEditor version, installed plugins) ==
Reproduced in Chrome 46.0.2490.71 m and Firefox 41.0.1 on Windows 7."	Bug	confirmed	Normal		General	3.0			ckeditor@…
