Index: /CKEditor/tests/tt/6215/1.html
===================================================================
--- /CKEditor/tests/tt/6215/1.html	(revision 6609)
+++ /CKEditor/tests/tt/6215/1.html	(revision 6609)
@@ -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: #6215 - Disabling Bold style copied from other source</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>
+=== Test case 1 === 
+ 1. First line is bold style formated:
+  * {{{<span style="font-weight: bold;">bold</span>}}}
+ 1. In WYSIWYG mode set cursor inside bold text in first line
+  * Expected: ''Bold'' button becomes enabled
+ 1. Select whole word and press''Bold'' button
+  * Expected: Bold style should be disabled
+=== Test case 2 === 
+ 1. Second line is bold style formated:
+  * {{{<b>bold</b>}}}
+ 1. In WYSIWYG mode set cursor inside bold text in Second line
+  * Expected: ''Bold'' button becomes enabled
+ 1. Select whole word and press''Bold'' button
+  * Expected: Bold style should be disabled
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+	<span style="font-weight: bold;">bold1</span><br />
+	<b>bold2</b>
+</textarea>
+</body>
+</html>
