Index: /CKEditor/branches/features/v4-paste/_source/plugins/clipboard/plugin.js
===================================================================
--- /CKEditor/branches/features/v4-paste/_source/plugins/clipboard/plugin.js	(revision 7162)
+++ /CKEditor/branches/features/v4-paste/_source/plugins/clipboard/plugin.js	(revision 7163)
@@ -444,5 +444,7 @@
 					{
 						var sel = editor.getSelection();
-						var bms = sel.createBookmarks2();
+
+						// Bookmarks are required to properly replicate
+						// the copy bin selection.
 						var bms2 = sel.createBookmarks( 1 );
 
@@ -457,6 +459,10 @@
 						var data = protectBookmarks( root.getOuterHtml() );
 
-						// We can destroy the bookmarks now.
+						// We can destroy the temporary bookmarks now.
 						sel.selectBookmarks( bms2 );
+
+						// This virtual bookmark is created for restoring the
+						// document selection later.
+						var bms = sel.createBookmarks2();
 
 						if ( editor.dataProcessor )
