Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 7518)
+++ /CKEditor/trunk/CHANGES.html	(revision 7519)
@@ -63,4 +63,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/8925">#8925</a> : [Firefox] Unexpected page scroll on large floating block when editor is re-focused.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/8978">#8978</a> : [IE] Saved editor text selection is lost after close menu.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/9022">#9022</a> : [IE7] Fixed wrong selection introduced in empty editor document when click to the bottom-right of the document.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 7518)
+++ /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 7519)
@@ -450,5 +450,4 @@
 									var textRng = body.$.createTextRange();
 									textRng.moveToPoint( evt.x, evt.y );
-									textRng.select();
 
 									html.on( 'mousemove', onHover );
@@ -458,6 +457,7 @@
 										html.removeListener( 'mousemove', onHover );
 										evt.removeListener();
+
+										// Make it in effect on mouse up. (#9022)
 										textRng.select();
-										textRng = null;
 									} );
 								}
