Index: /CKEditor/tests/tt/7105/1.html
===================================================================
--- /CKEditor/tests/tt/7105/1.html	(revision 6543)
+++ /CKEditor/tests/tt/7105/1.html	(revision 6543)
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #7290 - Switch bulleted list element to numbered</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');
+			CKEDITOR.replace( 'editor2');
+		}
+	</script>
+</head>
+<body>
+<pre>
+=== Editor 1 === 
+ 1. Select first two paragraphs and convert them to numbered list
+ 1. Select paragraph below table and convert it to numbered list item.
+ 1. To enable continuous numbers above and below table, '''Source''', delete/comment {{{/ol}}} above the table and {{{<ol>}}} below, 
+ 1. Switch back to WYSIWYG
+ * Expected: The table should be placed in second row of the list, and list should have continuous numbering below the table.
+=== Editor 2 === 
+ 1. Select all content
+ 1. Set numbered list on selection.
+ * Expected: The table should be placed in second row of the list, It should not be moved to top of document
+
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+<p>
+	Text1</p>
+<p>
+	Text2</p>
+<table border="1" cellpadding="1" cellspacing="1" style="width: 500px; ">
+	<tbody>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+	</tbody>
+</table>
+<p>
+	Text3</p>
+</textarea>
+Editor 2
+<textarea id="editor2" name="editor2">
+<p>
+	Text1</p>
+<p>
+	Text2</p>
+<table border="1" cellpadding="1" cellspacing="1" style="width: 500px; ">
+	<tbody>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+	</tbody>
+</table>
+<p>
+	Text3</p>
+</textarea>
+</body>
+</html>
