Index: /CKEditor/tests/tt/4269/1.html
===================================================================
--- /CKEditor/tests/tt/4269/1.html	(revision 4157)
+++ /CKEditor/tests/tt/4269/1.html	(revision 4157)
@@ -0,0 +1,113 @@
+<!--
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>Ticket: #4252</title>
+	<meta name="tags" content="editor,unit,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;
+
+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 )
+		{
+			callback.call( context, evt.editor );
+		}, this );
+	try
+	{
+		CKEDITOR.replace( elementId );
+	}
+	// 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>
+	</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>
+</html>
