Page MenuHomePhabricator

VisualEditor: Wrong rendering of levels of lists
Closed, ResolvedPublic

Description

  1. abc
    1. second
    2. next

Should be:

  1. abc
    1. second
    2. next

It is now:

  1. abc
    1. second
  2. next

HTML rendering is now:
<ol>
<li><p>abc</p></li>
<ol>

<li><p>second</p></li>

</ol>
<ul>

<li><p>next</p></li>

</ul>
</ol>

Should be:
<ol>
<li><p>abc</p>

<ol>
 <li><p>second</p></li>
</ol>
<ul>
 <li><p>next</p></li>
</ul>

</li>
</ol>


Version: unspecified
Severity: normal

Details

Reference
bz33143

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 22 2014, 12:03 AM
bzimport set Reference to bz33143.

To check we confirm against this when we implement. :-)

Mass-moving items into VisualEditor product

Mass-move out of "General" to "Data Model".

Add to "VE-deploy-2012-07-09" milestone per this morning's meeting.