[whatwg] [web-forms] Add ACCESSKEY to SELECT

>    Is this really needed in light of the fact that <label> supports 
> |accesskey|? Sample code:
> 
> <label accesskey="1">
>   <select>
>     <option>foo
>     <option>bar
>     <option>quuz
>   </select>
> </label>

How can the optional attributes of LABEL affect the optional attributes 
of SELECT? INPUT has an ACCESSKEY attribute as well, we are not going to 
remove it from that element either, do we?

For example, you could have datagrid like:

  <table>
   <thead>
    <tr><th>Foo</th><th>Bar</th>
   </thead>
   <tbody>
    <tr><td><select/></td><td><input/></td></tr>
    <tr><td><select/></td><td><input/></td></tr>
   </tbody>
  </table>

(First select the product, then the amount, for example.)


-- 
  Anne van Kesteren
  <http://annevankesteren.nl/>

Received on Thursday, 12 August 2004 22:02:44 UTC