Ticket #3450: 3450.patch

File 3450.patch, 580 bytes (added by Garry Yao, 15 years ago)
  • _source/plugins/styles/plugin.js

     
    10031014                // retrieving its final format.
    10041015                var tempSpan = document.createElement( 'span' );
    10051016                tempSpan.style.cssText = unparsedCssText;
    1006                 return tempSpan.style.cssText;
     1017                // IE is missing a semicolon at end.
     1018                return tempSpan.style.cssText + ( CKEDITOR.env.ie ? ';' : '' );
    10071019        }
    10081020
    10091021        // valueA is our internal "for comparison" value.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy