List across table cells incorrect
Reproducing Procedures
- Open the replace by class example page;
- Make the following content with the selection by click and drag over table cells;
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
<tbody>
<tr>
^<td>
text</td>
</tr>
<tr>
<td>
text</td>^
</tr>
</tbody>
</table>
- Click on 'Numbered List' to apply list style;
- Actual Result:
<ol>
<li>
text<br />
</li>
</ol>
<ol>
<li>
text<br />
</li>
</ol>
<ol>
<li>
<p>
</p>
</li>
<li>
<p>
</p>
</li>
</ol>
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
<tbody>
</tbody>
</table>
- Expected Result:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
<tbody>
<tr>
<td>
<ul>
<li>text</li></ul>
</td>
</tr>
<tr>
<td>
<ul>
<li>text</li></ul>
</td>
</tr>
</tbody>
</table>
Change History (3)
Keywords: |
WorksForMe added
|
Milestone: |
CKEditor 3.0 →
CKEditor 3.x
|
Resolution: |
→ fixed
|
Status: |
pending →
closed
|
WFM with the latest trunk in FF3. Can you confirm it?