﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2155	Nested OL/UL doesn't get fixed on output	Frederico Caldeira Knabben		"It may happen that pasting operations inject nested <ol> and <ul> elements. The editor should fix it on output.

'''Steps to reproduce'''

1. Paste the following in the Source view:

{{{
<ol>
    <ol>
        <li>Test</li>
    </ol>
</ol>
}}}

2. Switch to WYSIWYG view.
3. Switch back to Source view.

The source remains untouched, but the following is expected instead:

{{{
<ol>
    <li>&nbsp;
        <ol>
            <li>Test</li>
        </ol>
    </li>
</ol>
}}}

Note that the &nbsp; is needed to properly expand the empty <li> bullet or number for editing."	Bug	confirmed	Normal		Core : Lists	3.0		Firefox Chrome	
