Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 5905)
+++ /CKEditor/trunk/CHANGES.html	(revision 5906)
@@ -48,5 +48,4 @@
 		<li><a href="http://dev.ckeditor.com/ticket/6289">#6289</a> : Deleting nested table removed the parent cell.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/6341">#6341</a> : The editor contents now has the text cursor.</li>
-		<li><a href="http://dev.ckeditor.com/ticket/6261">#6261</a> : Focus and infinite loop between multiple editors.</li>
 	</ul>
 	<h3>
@@ -937,3 +936,2 @@
 </body>
 </html>
-c
Index: /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 5905)
+++ /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 5906)
@@ -626,6 +626,4 @@
 							});
 
-						var wasFocused;
-
 						domWindow.on( 'focus', function()
 							{
@@ -636,22 +634,4 @@
 								else if ( CKEDITOR.env.opera )
 									doc.getBody().focus();
-								// Webkit needs focus for the first time on the HTML element.
-								else if ( CKEDITOR.env.webkit )
-								{
-									if ( !wasFocused )
-									{
-										editor.document.getDocumentElement().focus();
-										wasFocused = 1;
-
-										// Webkit does not scroll to the cursor position after first focus.
-										setTimeout(function()
-										{
-											doc.$.execCommand( 'inserthtml', false, '<span id="cke_focus_marker" cke_temp="1"></span>' );
-											var marker = doc.getById( 'cke_focus_marker' );
-											marker.scrollIntoView();
-											marker.remove();
-										}, 0 );
-									}
-								}
 
 								editor.focusManager.focus();
