Opened 11 years ago
Last modified 11 years ago
#13025 closed Bug
Invalid table headers after switching from both to column — at Initial Version
| Reported by: | Marek Lewandowski | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Tables | Version: | |
| Keywords: | Cc: |
Description
- Open any sample with CKEditor. (i.e. samples/replacebyclass.html)
- Use following source.
`
<table border="1" cellpadding="1" cellspacing="1" style="width:500px" summary="bar">
<caption>foo</caption> <thead>
<tr>
<th scope="col">aa</th> <th scope="col">aa</th> <th scope="col">aa</th>
</tr>
</thead> <tbody>
<tr>
<th scope="row">bb</th> <td>cc</td> <td>dd</td>
</tr> <tr>
<th scope="row">bb</th> <td>cc</td> <td>dd</td>
</tr>
</tbody>
</table>
`
- Right click at table, and use "Table Properties" menu item.
- With "Headers" dropdown, set its value to "First Column".
- Accept dialog by clicking OK.
Expected result:
First column should contain headers.
Current result:
There is no header (th element) in first row.
Additional info:
- Tested with
Chromium 42.0.2296.0.
