Opened 14 years ago
Closed 14 years ago
#6972 closed Bug (duplicate)
htmlparser about li/dt/dd
Reported by: | yiminghe | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Parser | Version: | 3.5.1 |
Keywords: | fragment parser | Cc: |
Description
steps:
1.open http://ckeditor.com/demo 2.switch to source code mode 3.input malformed html :
<li>1</li> <dt>2</dt> <dd>3</dd>
(of course the above html are input by somebody who is not so smart :( )
expected :
hope to see the list ,the html after parsed should be :
<ul> <li> 1</li> </ul> <dl> <dt> 2</dt> <dd> 3</dd> </dl>
actually :
error,see pic
ps1: at the svn trunk code ,things are better ,but html generated do not conform to xhtml dtd (same with input):
<li>1</li> <dt>2</dt> <dd>3</dd>
ps2: i provide a patch to trunk ,but i am not sure ,it is not tested extensively .
Attachments (2)
Change History (3)
Changed 14 years ago by
Changed 14 years ago by
Attachment: | dd_dt_li.patch added |
---|
comment:1 Changed 14 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
DUP of #6946.