Index: /CKEditor/tests/tt/8226/1.html
===================================================================
--- /CKEditor/tests/tt/8226/1.html	(revision 7186)
+++ /CKEditor/tests/tt/8226/1.html	(revision 7187)
@@ -14,4 +14,7 @@
 === TC ===
 1. Click the "Start the tests" button;
+ * First case editor is removed after get created.
+ * Second case editor UI is removed from DOM before calling destory
+ * Third case editor is re-created with the same name.
 1. Log should indicate no errors thrown after running tests.
   </pre>
@@ -31,19 +34,26 @@
     <hr />
 
-	<form id="form1">
-      <textarea id="editor1">CKEditor #1</textarea>
-    </form>
+  <div id="errors3">
+	<b>Errors on #3:</b><br />
+  </div>
+  <hr />
 
-    <form id="form2">
-      <textarea id="editor2">CKEditor #2</textarea>
-    </form>
+  <form id="form1">
+	<textarea id="editor1">CKEditor #1</textarea>
+  </form>
+
+  <form id="form2">
+	<textarea id="editor2">CKEditor #2</textarea>
+  </form>
+
+  <textarea id="editor3">CKEditor #3</textarea>
 
     <script type="text/javascript">
-      function runTests() {
-        // Shouldn't create errors.
+		function runTests() {
+        // Create and then destroy.
         createCKEditor(1);
         destroyCKEditor(1);
 
-        // If the editor instance isn't a descendant of document.body, things break.
+        // Destroy the editor when editor UI is already removed from DOM.
         createCKEditor(2);
         destroyCKEditor(2, function() {
@@ -52,5 +62,9 @@
         });
 
-	  };
+		// Re-create editor with the same name.
+		createCKEditor(3);
+		createCKEditor(3);
+
+		};
 
       function createCKEditor(editor_id) {
