-
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
7 changed files
with
140 additions
and
10 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
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,11 @@ | ||
<body> | ||
<div id="editor"> | ||
<p><a href="http://cksource.com">Link 1</a></p> | ||
<p><a href="http://cksource.com">Link 2</a></p> | ||
<p>I'm<a href="http://foo"> an </a>in<a href="http://bar">sta</a>nce of <a href="http://ckeditor.com"><s>CKEditor</s></a>.</p> | ||
</div> | ||
|
||
<script> | ||
CKEDITOR.replace( 'editor' , { extraAllowedContent: 's' } ); | ||
</script> | ||
</body> |
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,31 @@ | ||
@bender-tags: tc, link, editor, 13062, 4.7.0 | ||
@bender-ui: collapsed | ||
@bender-ckeditor-plugins: link, toolbar, elementspath, wysiwygarea | ||
|
||
---- | ||
|
||
1. Place the cursor just before the link's text in first paragraph (check in element's path that you're still inside the link). | ||
2. Click the unlink button. | ||
|
||
**Expected:** | ||
* The link is removed. | ||
|
||
--- | ||
|
||
1. Place the cursor just after the link's text in second paragraph (check in element's path that you're still inside the link). | ||
2. Click the unlink button. | ||
|
||
**Expected:** | ||
* The link is removed. | ||
|
||
--- | ||
|
||
1. Place the cursor just after the last link's text in third paragraph (check in element's path that you're still inside the link). | ||
2. Click the unlink button. | ||
|
||
**Expected:** | ||
* The link is removed. | ||
|
||
**Unexpected:** | ||
* All links in paragraph are removed. | ||
* Strikethrough is removed. |