Index: /CKEditor/tests/tt/7841/1.html
===================================================================
--- /CKEditor/tests/tt/7841/1.html	(revision 7148)
+++ /CKEditor/tests/tt/7841/1.html	(revision 7148)
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #7841 - Deleting column with previously deleted cell</title>
+	<meta name="tags" content="editor,manual,all,tables,contextmenu">
+	<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>
+=== TC 1 ===
+ 1. Delete second cell in first row
+ 1. Delete second column in table (cursor set in second cell in third row)
+  * Table is left with one column, no error is displayed
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
+	<tbody>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				Step 1</td>
+		</tr>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				Step 2</td>
+		</tr>
+	</tbody>
+</table>
+</textarea>
+</body>
+</html>
