Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 7212)
+++ /CKEditor/trunk/CHANGES.html	(revision 7213)
@@ -63,4 +63,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/6957">#6957</a> : Find highlight not reaching read-only blocks.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/7948">#7948</a> : Improved perceptivity for width/height fields value type on Table dialog.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/6212">#6212</a> : [Webkit] Editor resize may scrolls host page.</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/themes/default/theme.js
===================================================================
--- /CKEditor/trunk/_source/themes/default/theme.js	(revision 7212)
+++ /CKEditor/trunk/_source/themes/default/theme.js	(revision 7213)
@@ -330,15 +330,6 @@
 		outer = resizeInner ? container.getChild( 1 ) : container;
 
-	// Resize the width first.
-	// WEBKIT BUG: Webkit requires that we put the editor off from display when we
-	// resize it. If we don't, the browser crashes!
-	CKEDITOR.env.webkit && outer.setStyle( 'display', 'none' );
 	// Set as border box width. (#5353)
 	outer.setSize( 'width',  width, true );
-	if ( CKEDITOR.env.webkit )
-	{
-		outer.$.offsetWidth;
-		outer.setStyle( 'display', '' );
-	}
 
 	// Get the height delta between the outer table and the content area.
