Index: /CKEditor/tests/tt/4269/1.html
===================================================================
--- /CKEditor/tests/tt/4269/1.html	(revision 4321)
+++ /CKEditor/tests/tt/4269/1.html	(revision 4322)
@@ -5,109 +5,37 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<title>Ticket: #4252</title>
-	<meta name="tags" content="editor,unit,all">
+	<title>Ticket: #4269</title>
+	<meta name="tags" content="editor,manual,all">
 	<script type="text/javascript" src="../../cktester/cell.js"></script>
 	<script TYPE="text/javascript">
-<!--
-function submitenter(e)
-{
-var keycode;
-var frm = document.getElementById("myform");
-if (window.event) keycode = window.event.keyCode;
-else if (e) keycode = e.which || e.keyCode;
-else return true;
+	<!--
+	function enterKeyHandler(e)
+	{
+		var keycode;
+		if ( window.event ) keycode = window.event.keyCode;
+		else if ( e ) keycode = e.which || e.keyCode;
+		else return true;
 
-if (keycode == 13 || keycode == 27)
-   {
-   frm.submit();
-   return false;
-   }
-else
-   return true;
-}
-/**
- * Load the editor and wait for fully interactable.
- * @param {Object} elementId
- * @param {Object} callback Continuation with {@param editor}.
- * @param {Object} context
- */
-function prepareEditor( elementId, callback, context )
-{
-	CKEDITOR.on( 'instanceReady',
-		function( evt )
+		if ( keycode == 13 || keycode == 27 )
 		{
-			callback.call( context, evt.editor );
-		}, this );
-	try
-	{
-		CKEDITOR.replace( elementId );
+			alert('failed');
+			return false;
+		}
+		else
+			return true;
 	}
-	// Editor instance already existed, reuse it.
-	catch( er )
-	{
-		// Keep the async intrinsic.
-		CKEDITOR.tools.setTimeout( callback, 0, context, CKEDITOR.instances[ elementId ] );
-	}
-}
-( function()
-{
-	var assert = CKEDITOR.test.assert,
-		toolbarTools = CKEDITOR.test.toolbar;
-
-	CKEDITOR.test.addTestCase( {
-
-			/**
-			 * Test typing inside the editor.
-			 */
-			test_editor : function()
-			{
-				prepareEditor( 'editor1', function( editor )
-				{
-					this.resume();
-				}, this );
-				this.wait();
-			}
-
-	} );
-} )();
-
-//-->
-</script>
+	//-->
+	</script>
 	</head>
-<body onkeypress="return submitenter(event)">
-	<h1>
-		CKEditor Sample
-	</h1>
-	<!-- This <div> holds alert messages to be display in the sample page. -->
-	<div id="alerts">
-		<noscript>
-			<p>
-				<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
-				support, like yours, you should still see the contents (HTML data) and you should
-				be able to edit it normally, without a rich editor interface.
-			</p>
-		</noscript>
-	</div>
-		<!-- This <fieldset> holds the HTML that you will usually find in your
-	     pages. -->
-	<form id="myform" action="sample_posteddata.php" method="post">
-			<p>
-				<label for="editor1">
-					Editor 1:</label><br/>				
-				<textarea id='editor1' >&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
-			</p>
-			<p>
-				<input name="myform" type="submit" value="Submit"/>
-			</p>
-		</form>
-	<div id="footer">
-		<hr/>
-		<p>
-			CKEditor - The text editor for Internet - <a href="http://ckeditor.com/" shape="rect">http://ckeditor.com</a>
-		</p>
-		<p id="copy">
-			Copyright © 2003-2009, <a href="http://cksource.com/" shape="rect">CKSource</a> - Frederico Knabben. All rights reserved.
-		</p>
-	</div>
+<body onkeypress="return enterKeyHandler(event)">
+<pre>
+=== Test 'enter' key is not bubbling ===
+ 1. Open 'Link' dialog;
+ 1. Enter a url and press 'Enter' key;
+ * Expected Result: Dialog closed with link inserted( There's no failed prompt );
+ 1. Open 'Link ' dialog again;
+ 1. Press 'Tab' until focus on the 'Ok' button, then press 'Enter' key;
+ * Expected Result: The result should be the same as above.
+</pre>
 </body>
 </html>
