Index: /CKEditor/tests/tt/4341/1.html
===================================================================
--- /CKEditor/tests/tt/4341/1.html	(revision 4427)
+++ /CKEditor/tests/tt/4341/1.html	(revision 4427)
@@ -0,0 +1,81 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4341</title>
+	<meta name="tags" content="editor,manual,all">
+	<script type="text/javascript" src="../../cktester/cell.js"></script>
+	<style>
+		#cke_editor2
+		{
+			float: left;
+		}
+		#cke_editor3
+		{
+			float: right;
+		}
+	</style>
+	<script>
+		YAHOO.util.Event.removeListener( window, 'load' );
+		window.onload = function ()
+		{
+			CKEDITOR.replace( 'editor2',
+			{
+				width : '49%',
+				startupShowBorders : true
+			} );
+
+			CKEDITOR.replace( 'editor3',
+			{
+				width : '49%',
+				startupShowBorders : true
+			} );
+		};
+	</script>
+</head>
+<body>
+<pre>
+=== Test Show Table Border ===
+ * Expected Result: All tables in left instance have border.
+ * Expected Result: The tablle in right instance has no border.
+ 1. Open table dialog to '''remove''' border attribute setting in the right editor;
+ * Expected Result: The table in it now has a border;
+ 1. Open table dialog to '''add''' border > 1 attribute setting in the right editor;
+ * Expected Result: The tables in it now has no border;
+</pre>
+<textarea id="editor2" name="editor2" rows="10" cols="80">
+	<table border="0">
+		<tr>
+			<th>head1</th>
+			<th>head2</th>
+		</tr>
+		<tr>
+			<td>cell1</td>
+			<td>cell2</td>
+		</tr>
+	</table>
+	<table>
+		<tr>
+			<th>head1</th>
+			<th>head2</th>
+		</tr>
+		<tr>
+			<td>cell1</td>
+			<td>cell2</td>
+		</tr>
+	</table>
+</textarea>
+<textarea id="editor3" name="editor3" rows="10" cols="80">
+	<table border=1>
+		<tr>
+			<th>head1</th>
+			<th>head2</th>
+		</tr>
+		<tr>
+			<td>cell1</td>
+			<td>cell2</td>
+		</tr>
+	</table>
+</textarea>
+</body>
+</html>
