Index: _source/plugins/wysiwygarea/plugin.js
===================================================================
--- _source/plugins/wysiwygarea/plugin.js	(revision 5427)
+++ _source/plugins/wysiwygarea/plugin.js	(revision )
@@ -480,6 +480,8 @@
 
 						focusTarget.on( 'focus', function()
 							{
+								// Force the cursor blinking. (#5622
+								CKEDITOR.env.gecko && blinkCursor();
 								editor.focusManager.focus();
 							});
 
@@ -764,6 +766,9 @@
 									isPendingFocus = true;
 								else if ( editor.window )
 								{
+									// [Webkit] Force the cursor blinking
+									// when setting focus manually. (#5622)
+									CKEDITOR.env.webkit && blinkCursor();
 									editor.window.focus();
 									editor.selectionChange();
 								}
