Index: /CKEditor/tests/tt/4385/1.html
===================================================================
--- /CKEditor/tests/tt/4385/1.html	(revision 4274)
+++ /CKEditor/tests/tt/4385/1.html	(revision 4274)
@@ -0,0 +1,39 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4385</title>
+	<meta name="tags" content="editor,unit,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+( function()
+{
+	var ts, tc, assert = CKEDITOR.test.assert, doc = CKEDITOR.document;
+	YAHOO.tool.TestRunner.add( ts = new CKEDITOR.test.suites.editorTestSuite(
+		{
+				editorName : 'test_editor',
+				startupData :  '',
+				name :document.title
+		} ) );
+
+	ts.add( tc = new YAHOO.tool.TestCase(
+		{
+			/**
+			 * Test the editor dirty flag is correct after the initial focus.
+			 */
+			test_checkDirty : function()
+			{
+				var editor = ts.editor;
+				editor.focus();
+				tc.wait( function()
+					{
+						assert.isFalse( editor.checkDirty(), "editor should not be dirty." );
+					}, 500 );
+			}
+		} ) );
+} )();
+	</script>
+</head>
+<body>
+</body>
+</html>
