Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 7193)
+++ /CKEditor/trunk/CHANGES.html	(revision 7194)
@@ -53,4 +53,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/8025">#8025</a> : The checkboxes in the Find and Replace dialog window are now part of a fieldset.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/7943">#7943</a> : CSS conflict no longer appears when the page styles set the <code>float</code> property of <code>label</code> elements.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/8016">#8016</a> : [Webkit] Flash content isn't visible when previewing content.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/8128">#8128</a> : Italian;</li>
Index: /CKEditor/trunk/_source/plugins/preview/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/preview/plugin.js	(revision 7193)
+++ /CKEditor/trunk/_source/plugins/preview/plugin.js	(revision 7194)
@@ -85,7 +85,11 @@
 			if ( !isCustomDomain )
 			{
-				oWindow.document.open();
-				oWindow.document.write( sHTML );
-				oWindow.document.close();
+				var doc = oWindow.document;
+				doc.open();
+				doc.write( sHTML );
+				doc.close();
+
+				// Chrome will need this to show the embedded. (#8016)
+				CKEDITOR.env.webkit && setTimeout( function() { doc.body.innerHTML += ''; }, 0 );
 			}
 		}
