﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4344	Successive <br>s get lost	Frederico Caldeira Knabben	Garry Yao	" 1. Load the following HTML:

{{{
<p>AAA<br />
<br /></p>
<p>XXX</p>
}}}

 2. Move to wysiwyg view. Note that there is no extra line space between AAA and BBB. The BRs got already lost.

 3. Move to source. You have the following:

{{{
<p>
	AAA</p>
<p>
	XXX</p>
}}}

Expected:

{{{
<p>
	AAA<br>
	&nbsp;</p>
<p>
	XXX</p>
}}}
"	Bug	closed	Normal	CKEditor 3.1	General	3.0	fixed	Confirmed Review+	nishimoto.s@…
