﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1292	Wrong transformation when removing list	Frederico Caldeira Knabben		"== Steps to Reproduce ==

 1. Load the following HTML at the source view:

{{{
<ul>
    <li>Line 1</li>
    <li>
    <h1>Line 2</h1>
    </li>
    <li>Line 3</li>
</ul>
}}}

 2. Switch to WYSIWYG;
 3. At ""Line 2"", remove the bullet (clicking on the toolbar button);
 4. Switch to Source.

== Current Result ==

{{{
<ul>
    <li>Line 1</li>
</ul>
<p>
<h1>Line 2</h1>
</p>
<ul>
    <li>Line 3</li>
</ul>
}}}

== Expected Result ==

{{{
<ul>
    <li>Line 1</li>
</ul>
<h1>Line 2</h1>
<ul>
    <li>Line 3</li>
</ul>
}}}"	Bug	closed	Normal	FCKeditor 2.5 Beta	Core : Lists	SVN (FCKeditor) - Retired	fixed		
