Opened 15 years ago

Closed 15 years ago

#3097 closed Bug (fixed)

Insert table within list problem

Reported by: Garry Yao Owned by:
Priority: Normal Milestone: CKEditor 3.0
Component: General Version: SVN (FCKeditor) - Retired
Keywords: Confirmed Cc:

Description

Reproducing Procedures

  1. Open the replace by code example page;
  2. Make document content and selection as following:
    <ol>
    	<li>
    			ite^m</li>
    </ol>
    
  3. Click Insert Table button to insert a 1x1 table.
  • Actual Result : The list has been spliced incorrectly with :
    <ol>
    	<li>
    		ite</li>
    </ol>
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
    	<tbody>
    		<tr>
    			<td>
    				<br />
    			</td>
    			<td>
    				<br />
    			</td>
    		</tr>
    	</tbody>
    </table>
    <ol>
    	m
    </ol>
    

Change History (3)

comment:1 Changed 15 years ago by Frederico Caldeira Knabben

Keywords: Confirmed added

comment:2 Changed 15 years ago by Garry Yao

Depend on #3100.

comment:3 Changed 15 years ago by Frederico Caldeira Knabben

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy