Index: /CKEditor/branches/features/v4-paste/_source/plugins/clipboard/plugin.js
===================================================================
--- /CKEditor/branches/features/v4-paste/_source/plugins/clipboard/plugin.js	(revision 7159)
+++ /CKEditor/branches/features/v4-paste/_source/plugins/clipboard/plugin.js	(revision 7160)
@@ -464,5 +464,5 @@
 
 						// Create a (invisible) container to temporarily hold the outputted data.
-						var copybin = new CKEDITOR.dom.element( 'div' );
+						var copybin = new CKEDITOR.dom.element( CKEDITOR.env.webkit ? 'div' : 'body' );
 						copybin.setStyles(
 							{
@@ -476,5 +476,5 @@
 							});
 						copybin.setStyle( editor.config.contentsLangDirection == 'ltr' ? 'left' : 'right', '-1000px' );
-						copybin.appendTo( body );
+						copybin.appendTo( CKEDITOR.env.webkit ? body : body.getParent() );
 						copybin.setHtml( data );
 
