Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[] (0) consistency with HTMLOptionsCollection
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12866

git-svn-id: http://svn.whatwg.org/webapps@6453 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 15, 2011
1 parent 510e8db commit a19af99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -48621,8 +48621,8 @@ <h4 id=the-select-element><span class=secno>4.10.9 </span>The <dfn><code>select<

readonly attribute <a href=#htmloptionscollection>HTMLOptionsCollection</a> <a href=#dom-select-options title=dom-select-options>options</a>;
attribute unsigned long <a href=#dom-select-length title=dom-select-length>length</a>;
getter any <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
any <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
getter <a href=#element>Element</a> <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
object <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmloptionelement>HTMLOptionElement</a> element, in optional <a href=#htmlelement>HTMLElement</a>? before);
void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmloptgroupelement>HTMLOptGroupElement</a> element, in optional <a href=#htmlelement>HTMLElement</a>? before);
void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmloptionelement>HTMLOptionElement</a> element, in long before);
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -48488,8 +48488,8 @@ You cannot submit this form when the field is incorrect.</samp></pre>

readonly attribute <a href=#htmloptionscollection>HTMLOptionsCollection</a> <a href=#dom-select-options title=dom-select-options>options</a>;
attribute unsigned long <a href=#dom-select-length title=dom-select-length>length</a>;
getter any <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
any <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
getter <a href=#element>Element</a> <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
object <a href=#dom-select-nameditem title=dom-select-namedItem>namedItem</a>(in DOMString name);
void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmloptionelement>HTMLOptionElement</a> element, in optional <a href=#htmlelement>HTMLElement</a>? before);
void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmloptgroupelement>HTMLOptGroupElement</a> element, in optional <a href=#htmlelement>HTMLElement</a>? before);
void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmloptionelement>HTMLOptionElement</a> element, in long before);
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -54411,8 +54411,8 @@ You cannot submit this form when the field is incorrect.</samp></pre>

readonly attribute <span>HTMLOptionsCollection</span> <span title="dom-select-options">options</span>;
attribute unsigned long <span title="dom-select-length">length</span>;
getter any <span title="dom-select-item">item</span>(in unsigned long index);
any <span title="dom-select-namedItem">namedItem</span>(in DOMString name);
getter <span>Element</span> <span title="dom-select-item">item</span>(in unsigned long index);
object <span title="dom-select-namedItem">namedItem</span>(in DOMString name);
void <span title="dom-select-add">add</span>(in <span>HTMLOptionElement</span> element, in optional <span>HTMLElement</span>? before);
void <span title="dom-select-add">add</span>(in <span>HTMLOptGroupElement</span> element, in optional <span>HTMLElement</span>? before);
void <span title="dom-select-add">add</span>(in <span>HTMLOptionElement</span> element, in long before);
Expand Down

0 comments on commit a19af99

Please sign in to comment.