Opened 14 years ago
Last modified 8 years ago
#6819 closed Bug
Pasting rich text in a table cell results in incorrect placement — at Initial Version
Reported by: | Jeremy Friesen | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Pasting | Version: | 3.2 |
Keywords: | Chrome | Cc: |
Description
- Given the nightly build URL (http://nightly.ckeditor.com/6196/_samples/replacebycode.html)
- Given a table with empty cells
- Given text in the editor area
If I copy the text in the editor area and paste the text into the cell, the result is that the text looks to have pasted into the proper location, but on switching to source mode, the text is in fact pasted immediately after the closing of the td element. Note, if I paste plain text into the table cell the behavior is as expected (i.e. the text is visually in the proper place and in source mode is contained in the td element)
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px; "> <tbody> <tr> <td> </td> Text from the editor <td> </tr> </tbody> </table>