Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 4208)
+++ /CKEditor/trunk/CHANGES.html	(revision 4209)
@@ -65,4 +65,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/3727">#3727</a> : Cell Properties dialog was missing color selection option.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/3517">#3517</a> : Fixed "Match cyclic" field in Find & Replace dialog.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/4368">#4368</a> : borderColor table cell attribute haven't worked for none-IE</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/tabletools/dialogs/tableCell.js
===================================================================
--- /CKEditor/trunk/_source/plugins/tabletools/dialogs/tableCell.js	(revision 4208)
+++ /CKEditor/trunk/_source/plugins/tabletools/dialogs/tableCell.js	(revision 4209)
@@ -380,12 +380,12 @@
 													setup : function( selectedCell )
 													{
-														this.setValue( selectedCell.getAttribute( 'borderColor' ) || '' );
+														this.setValue( selectedCell.getStyle( 'border-color' ) || '' );
 													},
 													commit : function( selectedCell )
 													{
 														if ( this.getValue() )
-															selectedCell.setAttribute( 'borderColor', this.getValue() );
+															selectedCell.setStyle( 'border-color', this.getValue() );
 														else
-															selectedCell.removeAttribute( 'borderColor' );
+															selectedCell.removeStyle( 'border-color' );
 													}
 												},
