Ticket #3549: 3549_3.patch
File 3549_3.patch, 611 bytes (added by , 14 years ago) |
---|
-
_source/core/dom/element.js
400 400 return this.$.getAttribute( name, 2 ); 401 401 }; 402 402 403 if ( CKEDITOR.env.ie && !CKEDITOR.env.ie8)403 if ( CKEDITOR.env.ie ) 404 404 { 405 405 return function( name ) 406 406 { … … 433 433 return this.$.style.cssText; 434 434 } 435 435 436 return standard.call( this, name );436 return this.$[ name ] || standard.call( this, name ); 437 437 }; 438 438 } 439 439 else