#2472: Splitting <th> produces a <td> instead of a second <th>
---------------------+------------------------------------------------------
 Reporter:  shri046  |       Owner:                 
     Type:  Bug      |      Status:  new            
 Priority:  Normal   |   Milestone:                 
Component:  General  |     Version:  FCKeditor 2.6.3
 Keywords:           |  
---------------------+------------------------------------------------------
 Insert the following table into the editor on the demo page
 {{{
 <table width="200" cellspacing="1" cellpadding="1" border="1">
     <thead>
         <tr>
             <th scope="col" colspan="2">&nbsp;&nbsp;&nbsp;</th>
         </tr>
     </thead>
     <tbody>
         <tr>
             <td>&nbsp;</td>
             <td>&nbsp;</td>
         </tr>
         <tr>
             <td>&nbsp;</td>
             <td>&nbsp;</td>
         </tr>
     </tbody>
 </table>
 }}}

 Splitting the header cell horizontally produces a <td> within the <thead>
 as opposed to <th> as shown below
 {{{
 <table width="200" cellspacing="1" cellpadding="1" border="1">
     <thead>
         <tr>
             <th scope="col">&nbsp;&nbsp;&nbsp;</th>
             <td>&nbsp;</td>
         </tr>
     </thead>
     <tbody>
         <tr>
             <td>&nbsp;</td>
             <td>&nbsp;</td>
         </tr>
         <tr>
             <td>&nbsp;</td>
             <td>&nbsp;</td>
         </tr>
     </tbody>
 </table>
 }}}

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/2472>
FCKeditor <http://www.fckeditor.net/>
The text editor for Internet
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to