Index: /CKEditor/trunk/_source/plugins/clipboard/dialogs/paste.js
===================================================================
--- /CKEditor/trunk/_source/plugins/clipboard/dialogs/paste.js	(revision 6601)
+++ /CKEditor/trunk/_source/plugins/clipboard/dialogs/paste.js	(revision 6602)
@@ -165,8 +165,10 @@
 				iframe = container.getElementsByTag( 'iframe' ).getItem( 0 ),
 				editor = this.getParentEditor(),
-				html = iframe.$.contentWindow.document.body.innerHTML;
+				body = iframe.getFrameDocument().getBody(),
+				bogus = body.getBogus();
+			bogus && bogus.remove();
 
 			setTimeout( function(){
-				editor.fire( 'paste', { 'html' : html } );
+				editor.fire( 'paste', { 'html' : body.getHtml() } );
 			}, 0 );
 
