Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 7213)
+++ /CKEditor/trunk/CHANGES.html	(revision 7214)
@@ -64,4 +64,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/7948">#7948</a> : Improved perceptivity for width/height fields value type on Table dialog.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/6212">#6212</a> : [Webkit] Editor resize may scrolls host page.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/7908">#7908</a> : [IE] Unlink command is missing from contextmenu when opening in some case.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/8128">#8128</a> : Italian;</li>
Index: /CKEditor/trunk/_source/plugins/contextmenu/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/contextmenu/plugin.js	(revision 7213)
+++ /CKEditor/trunk/_source/plugins/contextmenu/plugin.js	(revision 7214)
@@ -106,6 +106,7 @@
 								{
 									this.open( offsetParent, null, offsetX, offsetY );
-								},
-								0, this );
+
+								// IE needs a short while to allow selection change before opening menu. (#7908)
+								}, CKEDITOR.env.ie? 200 : 0, this );
 						},
 						this );
