Index: /CKEditor/tests/tt/4341/1.html
===================================================================
--- /CKEditor/tests/tt/4341/1.html	(revision 4530)
+++ /CKEditor/tests/tt/4341/1.html	(revision 4531)
@@ -22,12 +22,10 @@
 			CKEDITOR.replace( 'editor2',
 			{
-				width : '49%',
-				startupShowBorders : true
+				width : '49%'
 			} );
 
 			CKEDITOR.replace( 'editor3',
 			{
-				width : '49%',
-				startupShowBorders : true
+				width : '49%'
 			} );
 		};
@@ -36,10 +34,10 @@
 <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.
+=== Test 'border' attributes works with ShowBorder plugin ===
+ * Expected Result: All tables in left instance '''have''' border.
+ * Expected Result: All tables 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;
+ 1. Open table dialog to '''add''' border > 0 attribute setting in the right editor;
  * Expected Result: The tables in it now has no border;
 </pre>
Index: /CKEditor/tests/tt/4341/2.html
===================================================================
--- /CKEditor/tests/tt/4341/2.html	(revision 4531)
+++ /CKEditor/tests/tt/4341/2.html	(revision 4531)
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+	"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+	<title>Ticket: #4341 - Inline styles override ShowBorder styles</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%'
+			} );
+
+			CKEDITOR.replace( 'editor3',
+			{
+				width : '49%'
+			} );
+		};
+	</script>
+</head>
+<body>
+<pre>
+=== Test Table inline styles work with ShowBorder ===
+ * Expected Result: Table in left instance has solid 2px border, while all cells has 1px dotted border.
+ * Expected Result: Table and cells in right instance have solid 2px border.
+</pre>
+<textarea id="editor2" name="editor2" rows="10" cols="80">
+	<table style="border:2px solid">
+		<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 style="border:2px solid">
+		<tr>
+			<th style="border:2px solid">head1</th>
+			<th style="border:2px solid">head2</th>
+		</tr>
+		<tr>
+			<td style="border:2px solid">cell1</td>
+			<td style="border:2px solid">cell2</td>
+		</tr>
+	</table>
+</textarea>
+</body>
+</html>
