Index: /CKEditor/tests/tt/4041/1.html
===================================================================
--- /CKEditor/tests/tt/4041/1.html	(revision 4455)
+++ /CKEditor/tests/tt/4041/1.html	(revision 4455)
@@ -0,0 +1,40 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4041</title>
+	<meta name="tags" content="editor,manual,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+		CKEDITOR.on( 'instanceReady', function( evt )
+		{
+			evt.removeListener();
+			evt.editor.destroy();
+			CKEDITOR.replace( 'editor2' );
+		} );
+	</script>
+
+</head>
+<body>
+<pre>
+=== Test delete multiple cells ===
+ 1. Make sure the selection is across the two cells' contents;
+ 1. Right click to open context menu and click 'Cells' -> 'Delete Cells';
+ * Expected Result:  Both cells get deleted, left there an empty table.
+</pre>
+<textarea id="editor2">
+<table>
+	<tbody>
+		<tr>
+			<td>
+				<strong>row1</strong></td>
+		</tr>
+		<tr>
+			<td>
+				<strong>row2</strong></td>
+		</tr>
+	</tbody>
+</table>
+</textarea>
+</body>
+</html>
