Index: /CKEditor/tests/tt/4241/1.html
===================================================================
--- /CKEditor/tests/tt/4241/1.html	(revision 4168)
+++ /CKEditor/tests/tt/4241/1.html	(revision 4168)
@@ -0,0 +1,58 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4241</title>
+	<meta name="tags" content="editor,unit,stable">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+
+	<script type="text/javascript">
+CKEDITOR.test.addTestCase( ( function ()
+{
+	// Local references.
+	var assert = CKEDITOR.test.assert,
+		doc = CKEDITOR.document,
+		action = YAHOO.util.UserAction,
+		selector = YAHOO.util.Selector;
+	return {
+
+		/**
+		 * Test destroying an editor instance when float panel is keep opened. 
+		 */
+		test_destroy : function()
+		{
+			var self = this;
+
+			CKEDITOR.replace( 'editor1',
+				{
+					on :
+					{
+						instanceReady : function()
+						{
+							self.resume( function()
+							{
+								// Open style combo;
+								var styleComboButton = selector.query( '.cke_rcombo .cke_styles a' )[ 0 ];
+								styleComboButton.onclick();
+
+								// combo panel opening is synchronous;
+								self.wait( function()
+								{
+									var stylePanel = new CKEDITOR.dom.element( selector.query( '.cke_rcombopanel' )[ 0 ] ); 
+									CKEDITOR.instances.editor1.destroy();
+									assert.isFalse( doc.getBody().contains( stylePanel ), 'The panel is still inside document' );
+								}, 1000 );
+							} );
+						}
+					}
+				} );
+
+			this.wait();
+		}
+	};
+} )() );
+	</script>
+<body>
+<div id="editor1"></div>
+</body>
+</html>
Index: Editor/tests/tt/4241/4241.html
===================================================================
--- /CKEditor/tests/tt/4241/4241.html	(revision 4167)
+++ 	(revision )
@@ -1,58 +1,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-	"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-	<title>Ticket: #4241</title>
-	<meta name="tags" content="editor,unit,all">
-	<script type="text/javascript" src="../../cktester/cell.js"></script>
-
-	<script type="text/javascript">
-CKEDITOR.test.addTestCase( ( function ()
-{
-	// Local references.
-	var assert = CKEDITOR.test.assert,
-		doc = CKEDITOR.document,
-		action = YAHOO.util.UserAction,
-		selector = YAHOO.util.Selector;
-	return {
-
-		/**
-		 * Test destroying an editor instance when float panel is keep opened. 
-		 */
-		test_destroy : function()
-		{
-			var self = this;
-
-			CKEDITOR.replace( 'editor1',
-				{
-					on :
-					{
-						instanceReady : function()
-						{
-							self.resume( function()
-							{
-								// Open style combo;
-								var styleComboButton = selector.query( '.cke_rcombo .cke_styles a' )[ 0 ];
-								styleComboButton.onclick();
-
-								// combo panel opening is synchronous;
-								self.wait( function()
-								{
-									var stylePanel = new CKEDITOR.dom.element( selector.query( '.cke_rcombopanel' )[ 0 ] ); 
-									CKEDITOR.instances.editor1.destroy();
-									assert.isFalse( doc.getBody().contains( stylePanel ), 'The panel is still inside document' );
-								}, 1000 );
-							} );
-						}
-					}
-				} );
-
-			this.wait();
-		}
-	};
-} )() );
-	</script>
-<body>
-<div id="editor1"></div>
-</body>
-</html>
Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 4167)
+++ /CKEditor/trunk/CHANGES.html	(revision 4168)
@@ -49,5 +49,6 @@
 		<li><a href="http://dev.fckeditor.net/ticket/4028">#4028</a> : Maximize control's tool tip was wrong once it is maximized.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/4237">#4237</a> : ToolBar is chopped off in Safari browser 3.x.</li>
-		<li><a href="http://dev.fckeditor.net/ticket/4269">#4269</a> : "Esc" and "Enter" keystrokes were not handled when a dialogue box is opened which causes the form post automatically.</li>		
+		<li><a href="http://dev.fckeditor.net/ticket/3898">#3898</a> : Added validation for URL presentance in Image dialog.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/4241">#4241</a> : Float panels are left on screen while editor is destroyed.</li>		
 	</ul>
 	<h3>
