Index: _source/core/dom/element.js
===================================================================
--- _source/core/dom/element.js	(revision 5659)
+++ _source/core/dom/element.js	(working copy)
@@ -1162,11 +1162,13 @@
 				function()
 				{
 					this.$.style.MozUserSelect = 'none';
+					this.on( 'dragstart', function (evt) { evt.data.preventDefault(); } );
 				}
 			: CKEDITOR.env.webkit ?
 				function()
 				{
 					this.$.style.KhtmlUserSelect = 'none';
+					this.on( 'dragstart', function (evt) { evt.data.preventDefault(); } );
 				}
 			:
 				function()
Index: _source/plugins/panel/plugin.js
===================================================================
--- _source/plugins/panel/plugin.js	(revision 5659)
+++ _source/plugins/panel/plugin.js	(working copy)
@@ -192,6 +192,7 @@
 					this );
 
 				holder = doc.getBody();
+				holder.unselectable();
 			}
 			else
 				holder = this.document.getById( 'cke_' + this.id );
