Opened 15 years ago
Closed 15 years ago
#4344 closed Bug (fixed)
Successive <br>s get lost
Reported by: | Frederico Caldeira Knabben | Owned by: | Garry Yao |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.1 |
Component: | General | Version: | 3.0 |
Keywords: | Confirmed Review+ | Cc: | nishimoto.s@… |
Description
- Load the following HTML:
<p>AAA<br /> <br /></p> <p>XXX</p>
- Move to wysiwyg view. Note that there is no extra line space between AAA and BBB. The BRs got already lost.
- Move to source. You have the following:
<p> AAA</p> <p> XXX</p>
Expected:
<p> AAA<br> </p> <p> XXX</p>
Attachments (1)
Change History (6)
comment:1 Changed 15 years ago by
Owner: | set to Garry Yao |
---|---|
Status: | new → assigned |
Changed 15 years ago by
Attachment: | 4344.patch added |
---|
comment:2 Changed 15 years ago by
Keywords: | Review? added |
---|
comment:3 Changed 15 years ago by
comment:4 Changed 15 years ago by
Keywords: | Review+ added; Review? removed |
---|
When committing:
- The test case must be moved to the proper place now.
null" is not needed when returning from lastNoneSpaceChild. You may remove it. |
- Changelog.
comment:5 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Design TC udpated at : http://ckeditor.t/cktester/fort.html?cells=htmldataprocessor.[[BR]] Fixed with [4317].
The culprit is about white-spaces between filler nodes.