Index: /CKEditor/tests/tt/6107/1.html
===================================================================
--- /CKEditor/tests/tt/6107/1.html	(revision 6490)
+++ /CKEditor/tests/tt/6107/1.html	(revision 6490)
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #6107 - Remove style on second selection on list</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',
+			{
+				height : 100
+			} );
+			CKEDITOR.replace( 'editor2',
+			{
+				height : 100,
+				enterMode : CKEDITOR.ENTER_BR
+			} );
+			CKEDITOR.replace( 'editor3',
+			{
+				height : 100,
+				enterMode : CKEDITOR.ENTER_BR
+			} );
+		}
+	</script>
+</head>
+<body>
+<pre>
+=== Editor 1 === 
+ 1. Set cursor at the beginning of text
+ 1. Select Heading 1 from Format list
+ * Expected: Heading style should be removed. In Source mode, result should be : {{{<div><p>^paragraph1</p></div>}}}
+
+=== Editor 2 ===
+ Editor 2 is set in enterMode=BR
+ 1. set cursor at the beginning of text
+ 2. select Heading 3 from Format list
+ * In Source mode, result should be : {{{ <div style="color: red; ">^Test</div>}}}
+
+=== Editor 3 ===
+ Editor 2 is set in enterMode=BR
+ 1. set cursor at the beginning of text
+ 2. select ""Red title"" from Styles  list
+ * In Source mode, result should be : {{{ <div>^Test</div>}}}
+ 
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+	<div>
+		<h1>^paragraph1</h1>
+	</div>
+</textarea>
+Editor 2
+<textarea id="editor2" name="editor2">
+	<h3 style="color: red;">^Test</h3>
+</textarea>
+Editor 3
+<textarea id="editor2" name="editor3">
+	<h3 style="color: red;">^Test</h3>
+</textarea>
+</body>
+</html>
