Index: /CKEditor/tests/tt/7584/1.html
===================================================================
--- /CKEditor/tests/tt/7584/1.html	(revision 6969)
+++ /CKEditor/tests/tt/7584/1.html	(revision 6969)
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #7584 - list start number</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>
+=== Editor 1 === 
+ 1. Put cursor inside each list and open list style dialog from context menu;
+ 1. Assign a list start number or leave empty;
+ * Expected: List start numbering changes accordingly, consequent list item numbering get updated.
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1" class="ckeditor">
+
+	<ol>
+		<li>
+			a
+		</li>
+		<li value="2">
+			b
+		</li>
+		<li value="3">
+			c
+		</li>
+		<li value="5">
+			c
+		</li>
+	</ol>
+
+	<ol start="3">
+		<li>
+			a
+		</li>
+		<li value="4">
+			b
+		</li>
+		<li value="5">
+			c
+		</li>
+		<li value="10">
+			c
+		</li>
+	</ol>
+
+	<ol>
+		<li value="2">
+			a
+		</li>
+		<li>
+			b
+		</li>
+		<li>
+			c
+		</li>
+		<li value="5">
+			c
+		</li>
+	</ol>
+
+</textarea>
+</body>
+</html>
