Index: /CKEditor/tests/tt/6804/1.html
===================================================================
--- /CKEditor/tests/tt/6804/1.html	(revision 6511)
+++ /CKEditor/tests/tt/6804/1.html	(revision 6511)
@@ -0,0 +1,41 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #6687 - Empty tag should be removed on inline-style format</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>
+=== TC 1 ===
+ 1. under IE double-click the boundary of fieldset
+ 1. switch to Source mode
+ * Result should be: {{{<fieldset>
+        <legend>caption</legend>
+        <p>keep going, CKeditor!</p>
+    </fieldset>}}}
+=== TC 2 ===
+ 1. Under Firefox 3.6 click the legend
+ 1. switch to Source mode
+ * Result should be: {{{<fieldset>
+        <legend>caption</legend>
+        <p>keep going, CKeditor!</p>
+    </fieldset>}}}
+</pre>
+Editor 1 
+<textarea id="editor1" name="editor1">
+	<fieldset>
+        <legend>caption</legend>
+        <p>keep going, CKeditor!</p>
+    </fieldset>
+</textarea>
+</body>
+</html>
