Index: /CKEditor/tests/tt/6153/1.html
===================================================================
--- /CKEditor/tests/tt/6153/1.html	(revision 6487)
+++ /CKEditor/tests/tt/6153/1.html	(revision 6487)
@@ -0,0 +1,47 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #6153 - Switching to editor using TAB key</title>
+	<meta name="tags" content="editor,manual,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+		YAHOO.util.Event.removeListener( window, 'load' );
+		window.onload = function ()
+		{
+			CKEDITOR.replace( 'editor1',
+			{
+				
+				toolbar : "Basic",
+				height : 70,
+				width : 600
+			} );
+			CKEDITOR.replace( 'editor2',
+			{
+				toolbar : "Basic",
+				height : 70,
+				width : 600
+			} );
+		}
+	</script>
+</head>
+<body>
+<pre>
+=== TC ===
+ 
+ 1. Click outside of editor
+ 1. Hit tab to get into edit area
+ 1. Type some text
+ * It should be possible to set focus in edit area of CKEditor by using TAB key.
+ 1. Hit TAB again 
+ * focus should be set into second editor, and typing should be possible.
+ 1. Hit Shift+TAB
+ * Cursor should be blinking inside first editor
+
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1"></textarea>
+Editor 2
+<textarea id="editor2" name="editor2"></textarea>
+</body>
+</html>
