Index: /CKEditor/tests/tt/6228/1.html
===================================================================
--- /CKEditor/tests/tt/6228/1.html	(revision 6475)
+++ /CKEditor/tests/tt/6228/1.html	(revision 6475)
@@ -0,0 +1,107 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #6228 - Cell merge down</title>
+	<meta name="tags" content="editor,unit,stable">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+( function()
+{
+	var ts, tc,
+			assert = CKEDITOR.test.assert,
+			test = CKEDITOR.test;
+
+	function standardize( html )
+	{
+		var writer = new CKEDITOR.htmlParser.basicWriter();
+		var fragment = CKEDITOR.htmlParser.fragment.fromHtml( html );
+		fragment.writeHtml( writer );
+		return writer.getHtml();
+	}
+
+	YAHOO.tool.TestRunner.add( ts = new CKEDITOR.test.suites.editorTestSuite(
+		{
+				editorName : 'test_editor', 
+				config : { language :  'it' },
+				name :document.title
+		} ) );
+
+	ts.add( tc = new YAHOO.tool.TestCase(
+		{
+
+			setUp : function()
+			{
+				ts.editor.focus();
+			},
+			
+			test_merge_table_cells : function()
+			{
+				var editor = ts.editor;
+				test.setHtmlWithSelection(
+					editor.document.getBody(),
+					test.getValueAsHtml( 'editor_data_with_selection' ) );
+
+				editor.execCommand( 'cellMergeDown' );
+				assert.areEqual( standardize( test.getValueAsHtml( 'editor_data_output' ) ),
+						standardize( editor.getData(), false ), 'editor output data doesn\'t match.' );
+			}
+
+		} ) );
+} )();
+	</script>
+</head>
+<body>
+<textarea id="editor_data_with_selection">
+<table align="right" border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
+	<caption>
+		<strong>International Names</strong></caption>
+	<tbody>
+		<tr>
+			<td>
+				^Chinese</td>
+			<td>
+				<i>小紅帽</i></td>
+		</tr>
+		<tr>
+			<td>
+				Italian</td>
+			<td>
+				<i>Cappuccetto Rosso</i></td>
+		</tr>
+		<tr>
+			<td>
+				Spanish</td>
+			<td>
+				<i>Caperucita Roja</i></td>
+		</tr>
+	</tbody>
+</table>
+</textarea>
+<textarea id="editor_data_output">
+<table align="right" border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
+	<caption>
+		<strong>International Names</strong></caption>
+	<tbody>
+		<tr>
+			<td colspan="1" rowspan="2">
+				Chinese<br />
+				Italian</td>
+			<td>
+				<i>小紅帽</i></td>
+		</tr>
+		<tr>
+			<td>
+				<i>Cappuccetto Rosso</i></td>
+		</tr>
+		<tr>
+			<td>
+				Spanish</td>
+			<td>
+				<i>Caperucita Roja</i></td>
+		</tr>
+	</tbody>
+</table>
+</textarea>
+</body>
+</html>
