#1858: FF:cannot format entire table column -  adds code outside <td></td> tags 
of
1st cell
----------------------+-----------------------------------------------------
  Reporter:  tan      |       Owner:                   
      Type:  Bug      |      Status:  new              
  Priority:  Normal   |   Milestone:                   
 Component:  General  |     Version:  FCKeditor 2.5.1  
Resolution:           |    Keywords:  Confirmed Firefox
----------------------+-----------------------------------------------------
Changes (by w.olchawa):

  * keywords:  => Confirmed Firefox
  * summary:  cannot format entire table column -  adds code outside
              <td></td> tags of 1st cell => FF:cannot format
              entire table column -  adds code outside
              <td></td> tags of 1st cell

Comment:

 Confirmed in FF. Works fine with IE.

 This bug is a little bit more complicated. Following your example I will
 write another step by step instruction to reproduce this bug.

 '''1.''' Create a 3 row table with th sample code below:
 {{{
 <table width="200" cellspacing="1" cellpadding="1" border="1">
     <tbody>
         <tr>
             <td>cell1</td>
             <td>cell2</td>
         </tr>
         <tr>
             <td>cell3</td>
             <td>cell4</td>
         </tr>
         <tr>
             <td>cell5</td>
             <td>cell6</td>
         </tr>
     </tbody>
 </table>
 }}}
 '''2.''' Highlight the first row and press Right Justify button.

 '''3.''' The result is:
 {{{
 <table width="200" cellspacing="1" cellpadding="1" border="1">
     <tbody>
         <tr>
             <p style="text-align: right;">&nbsp;</p>
             <td style="text-align: right;">cell1</td>
             <p style="text-align: right;">&nbsp;</p>
             <td>cell2</td>
         </tr>
         <tr>
             <td>cell3</td>
             <td>cell4</td>
         </tr>
         <tr>
             <td>cell5</td>
             <td>cell6</td>
         </tr>
     </tbody>
 </table>
 }}}

 The expected behavior would be to have a code like this:
 {{{
 <table cellspacing="1" cellpadding="1" width="200" border="1">
     <tbody>
         <tr>
             <td style="text-align: right">cell1</td>
             <td style="text-align: right">cell2</td>
         </tr>
         <tr>
             <td>cell3</td>
             <td>cell4</td>
         </tr>
         <tr>
             <td>cell5</td>
             <td>cell6</td>
         </tr>
     </tbody>
 </table>
 }}}

 So Firefox messes up the table. I've added to screenshots to show the
 results.

 It is possible that we have a ticket opened for this bug. I will look it
 out.

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/1858#comment:1>
FCKeditor <http://www.fckeditor.net>
The text editor for Internet
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to