Index: /CKEditor/tests/tt/6663/1.html
===================================================================
--- /CKEditor/tests/tt/6663/1.html	(revision 7098)
+++ /CKEditor/tests/tt/6663/1.html	(revision 7098)
@@ -0,0 +1,50 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #6663 - Adding line breaks in table caption</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>
+=== TC 1 ===
+ 1. Set caret in highlihted position in table caption.
+ 1. Press Enter
+  * Caption now is divided into two lines
+ 1. Switch into Source mode
+  * Caption should be {{{ <caption>Table<br /> Caption</caption> }}}
+ 1. Switch back into WYSIWYG
+ 1. Right-click on table, and select "table properties"
+  * In dialog window, Table size and Caption options should be blocked for editing.
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+<table border="1" cellpadding="1" cellspacing="1" style="width: 500px; ">
+	<caption>
+		Table^ Caption</caption>
+	<tbody>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+		<tr>
+			<td>
+				&nbsp;</td>
+			<td>
+				&nbsp;</td>
+		</tr>
+	</tbody>
+</table>
+</textarea>
+</body>
+</html>
