-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1540 from ckeditor/t/932-1529
Fixed invalid images selection after paste in Easy Image
- Loading branch information
Showing
4 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<p>Note, this test uses a real Cloud Service connection, so you might want to be on-line 😉.</p> | ||
|
||
<div id="editor1"> | ||
</div> | ||
|
||
<script src="_helpers/tools.js"></script> | ||
<script> | ||
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) { | ||
bender.ignore(); | ||
} | ||
|
||
getToken( function( token ) { | ||
CKEDITOR.replace( 'editor1', { | ||
cloudServices_url: 'https://files.cke-cs.com/upload/', | ||
cloudServices_token: token | ||
}); | ||
} ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@bender-tags: 4.9.0, bug, 1529 | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: sourcearea, wysiwygarea, toolbar, easyimage, undo | ||
|
||
1. Drag an image into editor. | ||
2. Wait until image is uploaded. | ||
3. Press `delete/backspace` key. | ||
|
||
## Expected | ||
|
||
The image has been deleted. | ||
|
||
## Unexpected | ||
|
||
The image has not been deleted. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters