Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6452)
+++ /CKEditor/trunk/CHANGES.html	(revision 6453)
@@ -60,4 +60,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/7178">#7178</a> : [IE9] Read-only attribute doesn't work on IE9.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/7181">#7181</a> : [IE9] toolbar item subsided in v2 and office skin.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/6671">#6671</a> : combo drop down list selected item not refreshed .</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.ckeditor.com/ticket/7124">#7124</a> : Czech;</li>
Index: /CKEditor/trunk/_source/plugins/listblock/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/listblock/plugin.js	(revision 6452)
+++ /CKEditor/trunk/_source/plugins/listblock/plugin.js	(revision 6453)
@@ -251,4 +251,10 @@
 								0 );
 						}
+						// Blur any previously focused list item. (#6671)
+						else
+						{
+							var self = this;
+							setTimeout( function() { self.element.focus(); }, 0 );
+						}
 					}
 				}
