Changeset 3100
- Timestamp:
- 02/26/09 10:20:22 (4 years ago)
- Location:
- CKEditor/trunk/_source/core
- Files:
-
- 2 edited
-
dom/element.js (modified) (1 diff)
-
htmlparser/element.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/core/dom/element.js
r3092 r3100 380 380 return tabIndex; 381 381 break; 382 383 case 'style': 384 // IE does not return inline styles via getAttribute(). See #2947. 385 return this.$.style.cssText; 382 386 } 383 387 -
CKEditor/trunk/_source/core/htmlparser/element.js
r3048 r3100 20 20 attributes.href = attributes._cke_saved_href; 21 21 22 // IE outputs style attribute in capital letters. We should convert them 23 // back to lower case. 24 if ( CKEDITOR.env.ie && attributes.style ) 25 attributes.style = attributes.style.toLowerCase(); 26 22 27 /** 23 28 * The element name. … … 117 122 return; 118 123 } 119 124 120 125 // The "_cke_replacedata" indicates that this element is replacing 121 126 // a data snippet, which should be outputted as is. … … 125 130 return; 126 131 } 127 132 128 133 // Open element tag. 129 134 writer.openTag( this.name, this.attributes );
Note: See TracChangeset
for help on using the changeset viewer.
