Opened 15 years ago
Closed 15 years ago
#6804 closed Bug (fixed)
designing fieldset with legend returns unexpected result
| Reported by: | Ronnin Lee | Owned by: | Garry Yao |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 3.5.1 |
| Component: | Core : DTD | Version: | 3.0 |
| Keywords: | Cc: |
Description
write the following code directly in source-view:
<fieldset>
<legend>caption</legend>
<p>keep going, CKeditor!</p>
</fieldset>
then switch to design-view, it looks well, but when do some design actions, it returns unexpected result. the cases vary from diferent browsers:
IE8: double-click the boundary of fieldset, the code will be changed to
<fieldset> <p> </p> <legend>caption<span style="display: none"> </span></legend> <p> keep going, CKeditor!</p> </fieldset>
firefox 3.6.12: just click the legend, the code will be changed to
<fieldset>
<legend></legend>
<p>caption</p>
<p>keep going, CKeditor!</p>
</fieldset>
Attachments (1)
Change History (6)
comment:1 Changed 15 years ago by
| Milestone: | → CKEditor 3.5.1 |
|---|---|
| Status: | new → confirmed |
| Version: | 3.4.3 (SVN - trunk) → 3.0 |
Changed 15 years ago by
| Attachment: | 6804.patch added |
|---|
comment:2 Changed 15 years ago by
| Owner: | set to Garry Yao |
|---|---|
| Status: | confirmed → review |
comment:3 Changed 15 years ago by
| Component: | General → Core : DTD |
|---|
comment:4 Changed 15 years ago by
| Status: | review → review_passed |
|---|
comment:5 Changed 15 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | review_passed → closed |

Fixed with [6266].