﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6849	Paragragh tags should not be added inside <li> tags	James	Garry Yao	"'''Steps to Reproduce the defect:'''

 1. Open the Ajax sample.
 2. Click on the numbered list icon.
 3. Click on Heading 1 paragraph format.
 4. Type some text & press Enter.
 5. Type some more text & press Enter.

'''Expected''': The source should look like this:


{{{
<ol>
	<li>
		<h1>Heading 1 List Item 1</h1>
	</li>
	<li>
		Normal List Item 2
	</li>
	<li>
		Normal List Item 3
	</li>
</ol>
}}}


'''Actual''': But instead there are <p> tags added inside <li> tags so the output looks like this:


{{{
<ol>
	<li>
		<h1>Heading 1 List Item 1</h1>
	</li>
	<li>
		<p>Normal List Item 2</p>
	</li>
	<li>
		<p>Normal List Item 3</p>
	</li>
</ol>
}}}


"	Bug	closed	Normal	CKEditor 3.5.3	Core : Lists	3.4	fixed	IBM	Damian joek Satya Minnekanti
