Ticket #533 (closed defect: wontfix)

Opened 8 years ago

Last modified 4 years ago

Treatment of nested lists isnt conforming to XHTML spec

Reported by: buz Owned by: gogo
Priority: normal Milestone: 2.0
Component: Xinha Core Version: trunk
Severity: normal Keywords: nested lists
Cc:

Description

Xinha seems to generate code like

<ul>
<li>blabla</li>
<ul>.... nested list </ul>
</ul>

which isn't allowed in XHTML.

It should instead be

<ul>
<li>blabla<ul>.... nested list </ul></li>
</ul>

Change History

Changed 4 years ago by gogo

  • status changed from new to closed
  • resolution set to wontfix

This is actually how it is represented in the DOM (in Gecko), Xinha gets it like that.

Nobody else has complained in 4 years.

Note: See TracTickets for help on using tickets.