Skip to content

Commit 662fc07

Browse files
committed
Merge branch 't/8663'
2 parents 040c599 + d885276 commit 662fc07

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ CKEditor 4 Changelog
33

44
## CKEditor 4.3.4
55

6+
Fixed Issues:
7+
8+
* [#8663](http://dev.ckeditor.com/ticket/8663): Fixed [`element.renameNode()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-renameNode) not clearing [`element.getName()`](http://docs.ckeditor.com/#!/api/CKEDITOR.dom.element-method-getName) cache.
9+
610
## CKEditor 4.3.3
711

812
Fixed Issues:

core/dom/element.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1705,6 +1705,8 @@ CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype, {
17051705
this.getParent() && this.$.parentNode.replaceChild( newNode.$, this.$ );
17061706
newNode.$[ 'data-cke-expando' ] = this.$[ 'data-cke-expando' ];
17071707
this.$ = newNode.$;
1708+
// Bust getName's cache. (#8663)
1709+
delete this.getName;
17081710
},
17091711

17101712
/**

0 commit comments

Comments
 (0)