Index: /CKEditor/tests/tt/4246/1.html
===================================================================
--- /CKEditor/tests/tt/4246/1.html	(revision 6578)
+++ /CKEditor/tests/tt/4246/1.html	(revision 6579)
@@ -30,4 +30,5 @@
 					outputGecko = '<p><img src="_assets/logos.gif" style="border:2px solid;float:right;height:86px;margin:10px 5px;width:414px;" /></p>',
 					outputIE = '<p><img src="_assets/logos.gif" style="border-bottom:2px solid;border-left:2px solid;border-right:2px solid;border-top:2px solid;float:right;height:86px;margin:10px 5px;width:414px;" /></p>',
+					outputIE9 = '<p><img src="_assets/logos.gif" style="border:2px solid currentcolor;float:right;height:86px;margin:10px 5px;width:414px;" /></p>',
 					outputWebkit = '<p><img src="_assets/logos.gif" style="border-bottom-style:solid;border-bottom-width:2px;border-color:initial;border-left-style:solid;border-left-width:2px;border-right-style:solid;border-right-width:2px;border-top-style:solid;border-top-width:2px;float:right;height:86px;margin-bottom:10px;margin-left:5px;margin-right:5px;margin-top:10px;width:414px;" /></p>',
 					outputOpera = '<p><img src="_assets/logos.gif" style="border-bottom-color:currentcolor;border-bottom-style:solid;border-bottom-width:2px;border-left-color:currentcolor;border-left-style:solid;border-left-width:2px;border-right-color:currentcolor;border-right-style:solid;border-right-width:2px;border-top-color:currentcolor;border-top-style:solid;border-top-width:2px;float:right;height:86px;margin-bottom:10px;margin-left:5px;margin-right:5px;margin-top:10px;width:414px;" /></p>';
@@ -65,5 +66,6 @@
 							var result = editor.getData();
 							assert.areEqual(
-									CKEDITOR.env.ie ? outputIE
+									( CKEDITOR.env.ie && !!( document.documentMode > 8 ) ) ? outputIE9
+									: CKEDITOR.env.ie ? outputIE
 									: CKEDITOR.env.gecko?  outputGecko
 									: CKEDITOR.env.webkit? outputWebkit
@@ -83,4 +85,5 @@
 					input = '<p><img src="_assets/logos.gif" height="300" width="200" border="1" align="right" vspace="10" hspace="5"/></p>',
 					outputGecko = '<p><img src="_assets/logos.gif" style="border-style:solid;border-width:2px;float:right;height:86px;margin:10px 5px;width:414px;" /></p>',
+					outputIE9 = outputGecko,
 					outputIE = '<p><img src="_assets/logos.gif" style="border-bottom:2px solid;border-left:2px solid;border-right:2px solid;border-top:2px solid;float:right;height:86px;margin:10px 5px;width:414px;" /></p>',
 					outputWebkit = '<p><img src="_assets/logos.gif" style="border-bottom-style:solid;border-bottom-width:2px;border-left-style:solid;border-left-width:2px;border-right-style:solid;border-right-width:2px;border-top-style:solid;border-top-width:2px;float:right;height:86px;margin-bottom:10px;margin-left:5px;margin-right:5px;margin-top:10px;width:414px;" /></p>',
@@ -119,5 +122,6 @@
 							var result = editor.getData();
 							assert.areEqual(
-									CKEDITOR.env.ie ? outputIE
+									( CKEDITOR.env.ie && !!( document.documentMode > 8 ) ) ? outputIE9
+									: CKEDITOR.env.ie ? outputIE
 									: CKEDITOR.env.gecko?  outputGecko
 									: CKEDITOR.env.webkit? outputWebkit
