Opened 10 years ago
Last modified 10 years ago
#12764 confirmed Bug
Pasting pure text in Chrome causes weird results — at Initial Version
Reported by: | Wiktor Walc | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Pasting | Version: | 4.0 |
Keywords: | Support | Cc: | mike@… |
Description
- Open a sample with ACF disabled (e.g. the magicline sample).
- Paste the following in source mode:
<table border="0" cellpadding="0" cellspacing="0" style="width:100%"> <tbody> <tr> <td style="color: #5f2351; font-size: 18pt;"> Hello & welcome to K-talk </td> </tr> </tbody> </table>
- Switch to WYSIWYG mode.
- Copy "Test paste" string from some plain text editor (e.g. Notepad on Windows)
- Place the cursor at the end of the text and press the keyboard shortcut to paste (
CTRL + V
).
- The result is (wrong):
<table border="0" cellpadding="0" cellspacing="0" style="width:100%"> <tbody> <tr> <td style="color: #5f2351; font-size: 18pt;"> <font color="#666666"> <span style="font-size:10px"> Hello & welcome to K-talk </span> </font> Test paste </td> </tr> </tbody> </table>
- However, if you paste the same content using the "Paste" button in CKEditor, the result is different (correct!):
<table border="0" cellpadding="0" cellspacing="0" style="width:100%"> <tbody> <tr> <td style="color: #5f2351; font-size: 18pt;"> Hello & welcome to K-talkTest paste </td> </tr> </tbody> </table>
Change History (4)
Changed 10 years ago by
Changed 10 years ago by
Changed 10 years ago by
Changed 10 years ago by
Attachment: | example.mov added |
---|