You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
CKEditor 4 Changelog
1
+
CKEditor 4 Changelog
2
2
====================
3
3
4
4
## CKEditor 4.5.5
@@ -12,6 +12,7 @@ Fixed Issues:
12
12
*[#13887](https://dev.ckeditor.com/ticket/13887): Fixed: Link target now supports wider ASCII character range. Thanks to [SamZiemer](https://github.com/SamZiemer)!
13
13
*[#13790](https://dev.ckeditor.com/ticket/13790): Fixed: Allow for the iframe having been removed already. Thanks to [Stefan Rijnhart](https://github.com/StefanRijnhart)!
14
14
*[#13803](https://dev.ckeditor.com/ticket/13803): Fixed: Allow the editor to be destroyed before being fully initialized. Thanks to [Cyril Fluck](https://github.com/cyril-sf)!
*[#12848](http://dev.ckeditor.com/ticket/12848): Fixed: Opening find dialog in [read-only](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-property-readOnly) mode will no longer throw an exception.
16
17
*[#12189](http://dev.ckeditor.com/ticket/12189): Fixed: Link plugin dialog does not display subject of email links if subject parameter is not lowercase.
17
18
*[#13361](http://dev.ckeditor.com/ticket/13361): Fixed: Images fail when site path includes parentheses because background-image path needs single-quotes around URL value.
assert.areSame(config.expectedText,values.dropDataText,'On drop: text data should match.');
100
+
}
101
+
if(config.expectedHtml){
102
+
// isInnerHtmlMatching remove space from the end of strings we compare, adding 'x' fix this problem.
103
+
assert.isInnerHtmlMatching('x'+config.expectedHtml+'x','x'+values.dropDataHtml+'x','On drop: HTML data should match.');
104
+
}
105
+
assert.isTrue(values.dropRangeStartContainerMatch,'On drop: drop range start container should match.');
106
+
assert.isTrue(values.dropRangeStartContainerMatch,'On drop: drop range start offset should match.');
105
107
106
-
assert.isTrue(values.dropNativeEventMatch,'On drop: native event should match.');
107
-
// Check that it's the mocked drop target created by the mockDropEvent().
108
-
assert.areSame(CKEDITOR.NODE_TEXT,values.dropTarget.type,'On drop: drop target node type should match.');
109
-
assert.areSame('targetMock',values.dropTarget.getText(),'On drop: drop target should match.');
108
+
assert.isTrue(values.dropNativeEventMatch,'On drop: native event should match.');
109
+
// Check that it's the mocked drop target created by the mockDropEvent().
110
+
assert.areSame(CKEDITOR.NODE_TEXT,values.dropTarget.type,'On drop: drop target node type should match.');
111
+
assert.areSame('targetMock',values.dropTarget.getText(),'On drop: drop target should match.');
112
+
}
110
113
111
114
// Paste event asserts
112
115
assert.areSame(expectedBeforePasteEventCount,values.beforePasteEventCounter,'Before paste event should be called '+expectedBeforePasteEventCount+' time(s).');
@@ -630,6 +633,30 @@ var testsForMultipleEditor = {
<textareastyle="width:49%; height:50px; float: left;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. In commodo vulputate tempor. Sed <b>at</b> elit.</textarea>
0 commit comments