[Bug 14002] New: Allow DT to be after DD if there is only one DT/DD pair in DL

http://www.w3.org/Bugs/Public/show_bug.cgi?id=14002

           Summary: Allow DT to be after DD if there is only one DT/DD
                    pair in DL
           Product: HTML WG
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: LC1 HTML5 spec (editor: Ian Hickson)
        AssignedTo: ian@hixie.ch
        ReportedBy: mtanalin@yandex.ru
         QAContact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-wg-issue-tracking@w3.org,
                    public-html@w3.org


http://www.w3.org/TR/html5/grouping-content.html#the-dl-element

Following should be valid:

<dl>
    <dd>Description</dd>
    <dt>Term</dt>
</dl>

Since the DL has only one DT and one DD, there is no an ambiguity here, it's
evident that DT and DD are interlinked, so this should be considered
semantically equivalent to:

<dl>
    <dt>Term</dt>
    <dd>Description</dd>
</dl>

Thanks.

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Thursday, 1 September 2011 22:25:49 UTC