Index: /CKEditor/tests/tt/4614/1.html
===================================================================
--- /CKEditor/tests/tt/4614/1.html	(revision 4422)
+++ /CKEditor/tests/tt/4614/1.html	(revision 4422)
@@ -0,0 +1,39 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4614</title>
+	<meta name="tags" content="editor,unit,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<script>
+( function()
+{
+	var ts, tc, assert = CKEDITOR.test.assert;
+
+	YAHOO.tool.TestRunner.add( ts = new CKEDITOR.test.suites.editorTestSuite(
+		{
+				editorName : 'test_editor_1',
+				name :document.title
+		} ) );
+
+	ts.add( tc = new YAHOO.tool.TestCase(
+		{
+			/**
+			 * Test attribute is well protected when there's a line-break right after tag name.
+			 */
+			test_attribute_protection : function()
+			{
+				var editor = ts.editor,
+					dataprocessor = editor.dataProcessor,
+					input = '<a\n href="http://ckeditor.com"></a>',
+					output = '<a href="http://ckeditor.com" _cke_saved_href="http://ckeditor.com"></a>';
+
+				assert.areEqual( output, dataprocessor.toHtml( input, false )  );
+			}
+		} ) );
+} )();
+	</script>
+</head>
+<body>
+</body>
+</html>
