-
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.
- Loading branch information
Showing
4 changed files
with
71 additions
and
27 deletions.
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
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,19 @@ | ||
<h3>First editor:</h3> | ||
<div id="editor1" contenteditable="true" style="border:1px solid gray;"> | ||
<p>Foo bar.</p> | ||
</div> | ||
<br /> | ||
<h3>Second editor:</h3> | ||
<div id="editor2" contenteditable="true" style="border:1px solid gray;"> | ||
<p>Foo bar.</p> | ||
</div> | ||
<br /> | ||
<h3>Third editor:</h3> | ||
<div id="editor3" contenteditable="true" style="border:1px solid gray;"> | ||
<p>Foo bar.</p> | ||
</div> | ||
<script> | ||
CKEDITOR.inline( 'editor1' ); | ||
CKEDITOR.inline( 'editor2' ); | ||
CKEDITOR.inline( 'editor3' ); | ||
</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,20 @@ | ||
@bender-ui: collapsed | ||
@bender-tags: undo, tc, 4.5.2, 13441 | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, undo, basicstyles, image2, font, stylescombo, basicstyles, format, maximize, blockquote, list, table, resize, elementspath, justify, clipboard, floatingspace, sourcearea, htmlwriter, link | ||
|
||
###Only on IE Edge### | ||
|
||
1. Select all contents of one editor. | ||
2. <kbd>ctrl + c</kbd>. | ||
3. Focus second editor. | ||
4. <kbd>ctrl + v</kbd>. | ||
5. Undo button should be enabled. Press <kbd>ctrl + z</kbd> or use undo button. | ||
|
||
**Expected result**: Pasted content has been undone. | ||
|
||
------------ | ||
|
||
1. Focus third editor. | ||
2. Type a letter. | ||
|
||
**Expected result**: Undo enabled. |