Opened 16 years ago

Last modified 16 years ago

#3256 closed Bug

Justify across table cells incorrect — at Initial Version

Reported by: Garry Yao Owned by:
Priority: Must have (possibly next milestone) Milestone: CKEditor 3.0
Component: Core : Styles Version:
Keywords: Confirmed Review+ 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>
    			<td>
    				text</td>^
    		</tr>
    	</tbody>
    </table>
    
  3. Click on 'Justify Right' to apply alignment.
    • Actual Result: Javascript Error occurred.
    • Expected Result:
      <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
      	<tbody>
      		<tr>
      			<td>
      				<p style="text-align: right;">text</p></td>
      			<td>
      				<p style="text-align: right;">text</p></td>
      		</tr>
      	</tbody>
      </table>
      

Change History (0)

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