id summary reporter owner description type status priority milestone component version resolution keywords cc 12943 Problem paste(CTL+V) in chrome Kogata "When paste(CTL+V) in chrome, all of text element is add XXXX cause: plugins/clipboard/plugin.js L781 {{{ var selPastebin = range.select(); // If non-native paste is executed, IE will open security alert and blur editable. // Editable will then lock selection inside itself and after accepting security alert // this selection will be restored. We overwrite stored selection, so it's restored // in pastebin. (#9552) if ( CKEDITOR.env.ie ) { blurListener = editable.once( 'blur', function() { editor.lockSelection( selPastebin ); } ); } }}} next code is fixed. {{{ // If non-native paste is executed, IE will open security alert and blur editable. // Editable will then lock selection inside itself and after accepting security alert // this selection will be restored. We overwrite stored selection, so it's restored // in pastebin. (#9552) if ( CKEDITOR.env.ie ) { var selPastebin = range.select(); blurListener = editable.once( 'blur', function() { editor.lockSelection( selPastebin ); } ); } }}}" Bug closed Normal Core : Pasting 4.5.0 Beta duplicate