#3255: List across table cells incorrect
-----------------------+----------------------------------------------------
 Reporter:  garry.yao  |       Owner:              
     Type:  Bug        |      Status:  new         
 Priority:  Normal     |   Milestone:  CKEditor 3.0
Component:  General    |     Version:              
 Keywords:             |  
-----------------------+----------------------------------------------------
 === Reproducing Procedures ===
  1. Open  the ''replace by class'' example page;
  1. 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>
 }}}
  1. 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>
 }}}

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/3255>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
------------------------------------------------------------------------------
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to