| Summary: | [test case] Indent and List mark position is broken when <LI> includes <DT> and <DD> | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Yoichiro Takehora <takehora> |
| Component: | khtml parsing | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Slackware | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | testcase | ||
hmm, HTML? I'm not aware of a HTML version that allows <DT> under <LI> Created attachment 11687 [details]
testcase
attaching testcase for easier testing
SVN commit 552025 by carewolf: Don't be too trigger happy on closing LI elements. BUG:81806 M +113 -239 dtd.cpp M +2 -3 htmlparser.cpp |
Version: 3.2.2 (using KDE KDE 3.2.2) Installed from: Slackware Packages OS: Linux If you type HTML as below, indent and list mark position is corrupted. <UL> <LI><DT>Term1</DT><DD>Description1</DD></LI> <LI><DT>Term2</DT><DD>Description2</DD></LI> <LI><DT>Term3</DT><DD>Description3</DD></LI> </UL> Konqueror indicates --------------------------------------------------- o Term1 Description1 o Term2 Description2 o Term3 Description3 --------------------------------------------------- Internet Exploror indicates --------------------------------------------------- o Term1 Description1 o Term2 Description2 o Term3 Description3 ---------------------------------------------------