Changeset 7505
- Timestamp:
- 06/21/12 14:06:22 (11 months ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/core/dom/element.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r7504 r7505 45 45 Fixed issues:</p> 46 46 <ul> 47 <li><a href="http://dev.ckeditor.com/ticket/8783">#8783</a> : getAttribute( 'contenteditable' ) returns 'inherited' on IE7 and IE6 for elements created from code.</li> 47 48 <li><a href="http://dev.ckeditor.com/ticket/8463">#8463</a> : WebKit: Cut/Copy buttons didn't go on "enabled" state.</li> 48 49 <li><a href="http://dev.ckeditor.com/ticket/9043">#9043</a> : Command newpage didn't return its name when afterCommandExec event was fired.</li> -
CKEditor/trunk/_source/core/dom/element.js
r7493 r7505 467 467 // IE does not return inline styles via getAttribute(). See #2947. 468 468 return this.$.style.cssText; 469 470 case 'contenteditable': 471 case 'contentEditable': 472 return this.$.attributes.getNamedItem( 'contentEditable' ).specified ? 473 this.$.getAttribute( 'contentEditable' ) : null; 469 474 } 470 475 … … 1070 1075 else if ( name == 'checked' ) 1071 1076 this.$.checked = value; 1077 else if ( name == 'contenteditable' ) 1078 standard.call( this, 'contentEditable', value ); 1072 1079 else 1073 1080 standard.apply( this, arguments ); … … 1144 1151 else if ( name == 'tabindex' ) 1145 1152 name = 'tabIndex'; 1153 else if ( name == 'contenteditable' ) 1154 name = 'contentEditable'; 1146 1155 standard.call( this, name ); 1147 1156 };
Note: See TracChangeset
for help on using the changeset viewer.
