[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

Ian 'Hixie' Hickson <ian@hixie.ch> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|ian@hixie.ch                |contributor@whatwg.org

--- Comment #13 from Ian 'Hixie' Hickson <ian@hixie.ch> 2011-09-21 22:31:47 UTC ---
(In reply to comment #12)
> 
>     <fielset>
>         <div>
>             <ul>
>                 <li><a href="#">Minimize</a></li>
>                 <li><a href="#">Close</a></li>
>             </ul>
>             <legend>Example</legend>
>         </div>
>         <input type="text" name="something" />
>         <input type="text" name="another-field" />
>         ...
>     </fieldset>

Why can't you do:

     <fielset>
         <legend>Example</legend>
         <div>
             <ul>
                 <li><a href="#">Minimize</a></li>
                 <li><a href="#">Close</a></li>
             </ul>
         </div>
         <input type="text" name="something" />
         <input type="text" name="another-field" />
         ...
     </fieldset>

...?

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

Received on Wednesday, 21 September 2011 22:31:49 UTC