Ticket #4511: 4511.patch
File 4511.patch, 537 bytes (added by , 15 years ago) |
---|
-
_source/core/tools.js
201 201 { 202 202 var test = document.createElement( 'div' ).style; 203 203 204 var cssFloat = ( typeof test.cssFloat != 'undefined' ) ? 'cssFloat'204 var cssFloat = ( CKEDITOR.env.ie8 || typeof test.cssFloat != 'undefined' ) ? 'cssFloat' 205 205 : ( typeof test.styleFloat != 'undefined' ) ? 'styleFloat' 206 206 : 'float'; 207 207