﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7380	Line breaks in list items are lost when followed by another list	Wiktor Walc	Garry Yao	"Suppose someone has added a few line breaks with Shift+Enter to visually separate an indented list, like in the example below:
{{{
<ul>
	<li>
		test 1<br />
		<br />
		<br />
		<ul>
			<li>
				test 11</li>
			<li>
				test 12</li>
		</ul>
	</li>
</ul>
}}}

Switch to source/wysiwyg twice. Result: all line breaks are lost

{{{
<ul>
	<li>
		test 1
		<ul>
			<li>
				test 11</li>
			<li>
				test 12</li>
		</ul>
	</li>
</ul>
}}}
"	Bug	review	Normal		Core : Output Data	3.0.2			kenny.demetter@… satya_minnekanti@…
