Skip to content

Commit

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

git-svn-id: http://svn.whatwg.org/webapps@6418 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 11, 2011
1 parent d5c9bea commit 4466fcf
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 @@ -41758,8 +41758,8 @@ <h4 id=categories><span class=secno>4.10.2 </span>Categories</h4>

readonly attribute <a href=#htmlformcontrolscollection>HTMLFormControlsCollection</a> <a href=#dom-form-elements title=dom-form-elements>elements</a>;
readonly attribute long <a href=#dom-form-length title=dom-form-length>length</a>;
caller <a href=#dom-form-item title=dom-form-item>getter</a> any (in unsigned long index);
caller <a href=#dom-form-nameditem title=dom-form-namedItem>getter</a> any (in DOMString name);
caller <a href=#dom-form-item title=dom-form-item>getter</a> <a href=#element>Element</a> (in unsigned long index);
caller <a href=#dom-form-nameditem title=dom-form-namedItem>getter</a> object (in DOMString name);

void <a href=#dom-form-submit title=dom-form-submit>submit</a>();
void <a href=#dom-form-reset title=dom-form-reset>reset</a>();
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -41625,8 +41625,8 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H

readonly attribute <a href=#htmlformcontrolscollection>HTMLFormControlsCollection</a> <a href=#dom-form-elements title=dom-form-elements>elements</a>;
readonly attribute long <a href=#dom-form-length title=dom-form-length>length</a>;
caller <a href=#dom-form-item title=dom-form-item>getter</a> any (in unsigned long index);
caller <a href=#dom-form-nameditem title=dom-form-namedItem>getter</a> any (in DOMString name);
caller <a href=#dom-form-item title=dom-form-item>getter</a> <a href=#element>Element</a> (in unsigned long index);
caller <a href=#dom-form-nameditem title=dom-form-namedItem>getter</a> object (in DOMString name);

void <a href=#dom-form-submit title=dom-form-submit>submit</a>();
void <a href=#dom-form-reset title=dom-form-reset>reset</a>();
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -46521,8 +46521,8 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {

readonly attribute <span>HTMLFormControlsCollection</span> <span title="dom-form-elements">elements</span>;
readonly attribute long <span title="dom-form-length">length</span>;
caller <span title="dom-form-item">getter</span> any (in unsigned long index);
caller <span title="dom-form-namedItem">getter</span> any (in DOMString name);
caller <span title="dom-form-item">getter</span> <span>Element</span> (in unsigned long index);
caller <span title="dom-form-namedItem">getter</span> object (in DOMString name);

void <span title="dom-form-submit">submit</span>();
void <span title="dom-form-reset">reset</span>();
Expand Down

0 comments on commit 4466fcf

Please sign in to comment.