Index: /CKEditor/branches/features/aria/_source/plugins/link/dialogs/link.js
===================================================================
--- /CKEditor/branches/features/aria/_source/plugins/link/dialogs/link.js	(revision 5086)
+++ /CKEditor/branches/features/aria/_source/plugins/link/dialogs/link.js	(revision 5087)
@@ -1384,7 +1384,11 @@
 		onFocus : function()
 		{
-			var linkType = this.getContentElement( 'info', 'linkType' );
-			if ( linkType && linkType.getValue() == 'url' )
-				return this.getContentElement( 'info', 'url' );
+			var linkType = this.getContentElement( 'info', 'linkType' ),
+					urlField;
+			if ( linkType && linkType.getValue( ) == 'url' )
+			{
+				urlField = this.getContentElement( 'info', 'url' );
+				urlField.select();
+			}
 		}
 	};
