-
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
5 changed files
with
66 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<textarea id="classic">Test text</textarea> | ||
|
||
<script> | ||
CKEDITOR.replace( 'classic' ); | ||
</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,23 @@ | ||
@bender-tags: bug, 4.10.1, 1084 | ||
@bender-ckeditor-plugins: wysiwygarea, toolbar, colorbutton, sourcearea | ||
@bender-ui: collapsed | ||
|
||
Do following steps for both text color button and background color button. | ||
|
||
1. Select word 'text'. | ||
1. Press text color button. | ||
1. Set any of colors other than automatic. | ||
1. Press text color button again. | ||
1. Set color to 'automatic'. | ||
1. Press source button. | ||
|
||
## Expected | ||
|
||
Html in source mode matches following: | ||
`<p>Test text</p>` | ||
|
||
## Unexpected | ||
|
||
Html in source mode has span with color `null`, eg.: | ||
|
||
`<p>Test <span style="color:null">text</span></p>` |