Opened 8 years ago
Last modified 8 years ago
#17031 confirmed Bug
Cannot type after selecting whole content and changing its format.
Reported by: | kkrzton | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description (last modified by )
Steps to reproduce
- Go to http://tests.ckeditor.dev:1030/tests/plugins/widgetselection/manual/basic.
- Select all (using keyboard) inside first editor instance.
- Change
Paragraph format
to e.g.Header 1
. - Start typing.
Expected result
Newly typed characters appears in the editor and are visible.
Actual result
Newly typed characters are not visible.
Other details (browser, OS, CKEditor version, installed plugins)
Chrome 58.0.3029.110 (64-bit) on OS X. Same happens on Safari.
This happens because the filler is not properly removed so new typed content is inserted inside this filler (which is invisible).
Change History (4)
comment:1 Changed 8 years ago by
Status: | new → confirmed |
---|
comment:2 Changed 8 years ago by
comment:3 Changed 8 years ago by
Description: | modified (diff) |
---|
The filler is not properly removed because with changing paragraph format it is also transformed to different element type (e.g.
div
->h1
) and is no longer recognized as a filler.