Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6181)
+++ /CKEditor/trunk/CHANGES.html	(revision 6182)
@@ -68,4 +68,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/6150">#6150</a> : [Safari] Color dialog was broken.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/6747">#6747</a> : Full screen layout issue caused by page element focus outside editor.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/6779">#6779</a> : Click on "body" on elements blink the selection off.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/6756">#6756</a> : Hungarian;</li>
Index: /CKEditor/trunk/_source/plugins/elementspath/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/elementspath/plugin.js	(revision 6181)
+++ /CKEditor/trunk/_source/plugins/elementspath/plugin.js	(revision 6182)
@@ -156,5 +156,13 @@
 
 		var element = editor._.elementsPath.list[ elementIndex ];
-		editor.getSelection().selectElement( element );
+
+		if ( element.is( 'body' ) )
+		{
+			var range = new CKEDITOR.dom.range( editor.document );
+			range.selectNodeContents( element );
+			range.select();
+		}
+		else
+			editor.getSelection().selectElement( element );
 
 		return false;
