Index: /CKEditor/tests/tt/6984/1.html
===================================================================
--- /CKEditor/tests/tt/6984/1.html	(revision 6404)
+++ /CKEditor/tests/tt/6984/1.html	(revision 6404)
@@ -0,0 +1,59 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>Ticket: #6984 Line breaks in enter mode BR</title>
+	<meta name="tags" content="editor,unit,stable">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script type="text/javascript">
+
+// Load the required plugins and launch the runner.
+CKEDITOR.test.runner.defer = true;
+CKEDITOR.plugins.load( [ 'htmldataprocessor' ] , function()
+{
+ CKEDITOR.test.runner.run();
+} );
+
+	</script>
+	<script type="text/javascript">
+	//<![CDATA[
+	// Local references.
+	var assert			= CKEDITOR.test.assert;
+	var getInnerHtml	= CKEDITOR.test.getInnerHtml;
+	var doc = new CKEDITOR.dom.document( document );
+
+	var ts, tc;
+
+	YAHOO.tool.TestRunner.add( ts = new CKEDITOR.test.suites.editorTestSuite(
+		{
+				editorName : 'test_editor_1',
+				config : { language :  'en', enterMode : CKEDITOR.ENTER_BR },
+				name :document.title
+		} ) );
+
+
+	ts.add( tc = new YAHOO.tool.TestCase(
+	{
+		// Test inserting additional line breaks.
+		test_br : function()
+		{
+					var editor = ts.editor,
+		//Additional line breaks should not be removed.
+					input = '<hr /><br /><br /><br />',
+					output = '<hr /><br /><br /><br />',
+			
+				dataprocessor = editor.dataProcessor;
+
+			assert.areSame(
+									output ,
+									dataprocessor.toHtml( input ) );
+		},
+
+		name : document.title
+	} ) );
+	//]]>
+	</script>
+</head>
+<body>
+	<div id="_P1"></div>
+</body>
+</html>
