Index: /CKEditor/tests/tt/7944/1.html
===================================================================
--- /CKEditor/tests/tt/7944/1.html	(revision 7135)
+++ /CKEditor/tests/tt/7944/1.html	(revision 7135)
@@ -0,0 +1,31 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #7944 - Enter key in table caption</title>
+	<meta name="tags" content="editor,manual,all,table">
+	<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. Put cursor in Table caption and press enter
+ 1. Switch to Source mode
+ * Result: Lines in caption should not be divided by paragraphs
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+<table border="1" cellpadding="1" cellspacing="1" >
+	<caption>table caption</caption>
+	<tbody><tr><td>cell</td></tr></tbody>
+</table>
+</textarea>
+</body>
+</html>
Index: /CKEditor/tests/tt/7944/2.html
===================================================================
--- /CKEditor/tests/tt/7944/2.html	(revision 7135)
+++ /CKEditor/tests/tt/7944/2.html	(revision 7135)
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #7944 - Enter key in table caption</title>
+	<meta name="tags" content="editor,manual,all,table">
+	<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. Put cursor in fieldset legend and press enter
+ 1. Switch to Source mode
+ * Result: Lines in caption should not be divided by paragraphs
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+<form>
+	<fieldset>
+		<legend>fieldset legend</legend>
+		height: <input type="text"/>
+		weight: <input type="text"/>
+	</fieldset>
+</form>
+</textarea>
+</body>
+</html>
