Ticket #2472 (closed Bug: fixed)
Splitting <th> produces a <td> instead of a second <th>
| Reported by: | shri046 | Owned by: | alfonsoml |
|---|---|---|---|
| Priority: | Normal | Milestone: | FCKeditor 2.6.4 |
| Component: | General | Version: | FCKeditor 2.6.3 |
| Keywords: | Review+ | Cc: |
Description
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"> </th>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </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"> </th>
<td> </td>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
Attachments
Change History
Note: See
TracTickets for help on using
tickets.