Index: FCKeditor/trunk/_whatsnew.html
===================================================================
--- FCKeditor/trunk/_whatsnew.html	(revision 1898)
+++ FCKeditor/trunk/_whatsnew.html	(revision 1920)
@@ -42,4 +42,7 @@
 	<p>
 		Fixed Bugs:</p>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/768">#768</a>] It is no longer possible
+			for an image to have its width and height defined with both HTML attributes and inline CSS
+			styles in IE.</li>
 	<ul>
 		<li></li>
Index: FCKeditor/trunk/editor/_source/internals/fckxhtml.js
===================================================================
--- FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 1898)
+++ FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 1920)
@@ -401,4 +401,11 @@
 			FCKXHtml._AppendAttribute( node, 'src', sSavedUrl ) ;
 
+		// Bug #768 : If the width and height are defined inline CSS, 
+		// don't define it again in the HTML attributes.
+		if ( htmlNode.style.width )
+			node.removeAttribute( 'width' ) ;
+		if ( htmlNode.style.height )
+			node.removeAttribute( 'height' ) ;
+
 		return node ;
 	},
