[Bug 12834] LEGEND should be allowed to NOT be exactly first child of FIELDSET ("The legend element" spec section)

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

--- Comment #11 from Ian 'Hixie' Hickson <ian@hixie.ch> 2011-08-23 00:13:59 UTC ---
> Example is provided in description of bug 13062:
> 
>     <fielset>
>         <div>
>             <ul>
>                 <li><a href="#">Minimize</a></li>
>                 <li><a href="#">Close</a></li>
>             </ul>
>             <legend>Example</legend>
>         </div>
>     </fieldset>

I don't understand why this isn't sufficient:

    <fieldset>
      <legend>Example</legend>
      <ul>
        <li><a href="#">Minimize</a></li>
        <li><a href="#">Close</a></li>
      </il>
    </fieldset>

-- 
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 Tuesday, 23 August 2011 00:14:05 UTC