Opened 15 years ago

Closed 12 years ago

#3255 closed Bug (fixed)

List across table cells incorrect

Reported by: Garry Yao Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. 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>
    
  3. 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)

comment:1 Changed 15 years ago by Frederico Caldeira Knabben

Keywords: WorksForMe added
Milestone: CKEditor 3.0CKEditor 3.x

WFM with the latest trunk in FF3. Can you confirm it?

comment:2 Changed 14 years ago by Frederico Caldeira Knabben

Milestone: CKEditor 3.x

Milestone CKEditor 3.x deleted

comment:3 Changed 12 years ago by Jakub Ś

Resolution: fixed
Status: pendingclosed
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