Index: /CKEditor/tests/tt/6236/1.html
===================================================================
--- /CKEditor/tests/tt/6236/1.html	(revision 6611)
+++ /CKEditor/tests/tt/6236/1.html	(revision 6611)
@@ -0,0 +1,38 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #6236 - Issue with numbered list</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');
+		}
+	</script>
+</head>
+<body>
+<pre>
+=== Test case 1 === 
+ 1. Put cursor after list (in blank paragraph) and press ''Backspace''
+  * Expected: empty paragraph is deleted, cursor is placed in second list item
+ 1. Press ''Enter'' until You come out of the list
+  * Expected: Caret comes out of the list, and new, empty paragraph is created
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+	<ol>
+	<li>
+		item1
+		<ol>
+			<li>
+				item2</li>
+		</ol>
+	</li>
+	</ol>
+<p>&nbsp;</p>
+</textarea>
+</body>
+</html>
