Skip to content

Commit

Permalink
[e] (0) WebIDL typos.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3633 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 15, 2009
1 parent 7048e28 commit d9f5510
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions index
Expand Up @@ -5482,7 +5482,7 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d
<pre class=idl>interface <dfn id=htmlallcollection-0>HTMLAllCollection</dfn> {
readonly attribute unsigned long <a href=#dom-htmlallcollection-length title=dom-HTMLAllCollection-length>length</a>;
caller getter Element <a href=#dom-htmlallcollection-item title=dom-HTMLAllCollection-item>item</a>(in unsigned long index);
caller getter Object <a href=#dom-htmlallcollection-nameditem title=dom-HTMLAllCollection-namedItem>namedItem</a>(in DOMString name);
caller getter object <a href=#dom-htmlallcollection-nameditem title=dom-HTMLAllCollection-namedItem>namedItem</a>(in DOMString name);
<a href=#htmlallcollection-0>HTMLAllCollection</a> <a href=#dom-htmlallcollection-tags title=dom-HTMLAllCollection-tags>tags</a>(in DOMString tagName);
};</pre>

Expand Down Expand Up @@ -5597,7 +5597,7 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d
<pre class=idl>interface <dfn id=htmlformcontrolscollection-0>HTMLFormControlsCollection</dfn> {
readonly attribute unsigned long <a href=#dom-htmlformcontrolscollection-length title=dom-HTMLFormControlsCollection-length>length</a>;
caller getter <a href=#htmlelement>HTMLElement</a> <a href=#dom-htmlformcontrolscollection-item title=dom-HTMLFormControlsCollection-item>item</a>(in unsigned long index);
caller getter Object <a href=#dom-htmlformcontrolscollection-nameditem title=dom-HTMLFormControlsCollection-namedItem>namedItem</a>(in DOMString name);
caller getter object <a href=#dom-htmlformcontrolscollection-nameditem title=dom-HTMLFormControlsCollection-namedItem>namedItem</a>(in DOMString name);
};

interface <dfn id=radionodelist>RadioNodeList</dfn> : <span>NodeList</span> {
Expand Down Expand Up @@ -5731,8 +5731,8 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20html%3E..
<pre class=idl>interface <dfn id=htmloptionscollection-0>HTMLOptionsCollection</dfn> {
attribute unsigned long <a href=#dom-htmloptionscollection-length title=dom-HTMLOptionsCollection-length>length</a>;
caller getter <a href=#htmloptionelement>HTMLOptionElement</a> <a href=#dom-htmloptionscollection-item title=dom-HTMLOptionsCollection-item>item</a>(in unsigned long index);
caller getter Object <a href=#dom-htmloptionscollection-nameditem title=dom-HTMLOptionsCollection-namedItem>namedItem</a>(in DOMString name);
void <a href=#dom-htmloptionscollection-add title=dom-HTMLOptionsCollection-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, optional in <a href=#htmlelement>HTMLElement</a> before);
caller getter object <a href=#dom-htmloptionscollection-nameditem title=dom-HTMLOptionsCollection-namedItem>namedItem</a>(in DOMString name);
void <a href=#dom-htmloptionscollection-add title=dom-HTMLOptionsCollection-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, in optional <a href=#htmlelement>HTMLElement</a> before);
void <a href=#dom-htmloptionscollection-add title=dom-HTMLOptionsCollection-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, in long before);
void <a href=#dom-htmloptionscollection-remove title=dom-HTMLOptionsCollection-remove>remove</a>(in long index);
};</pre>
Expand Down
8 changes: 4 additions & 4 deletions source
Expand Up @@ -5237,7 +5237,7 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d
<pre class="idl">interface <dfn>HTMLAllCollection</dfn> {
readonly attribute unsigned long <span title="dom-HTMLAllCollection-length">length</span>;
caller getter Element <span title="dom-HTMLAllCollection-item">item</span>(in unsigned long index);
caller getter Object <span title="dom-HTMLAllCollection-namedItem">namedItem</span>(in DOMString name);
caller getter object <span title="dom-HTMLAllCollection-namedItem">namedItem</span>(in DOMString name);
<span>HTMLAllCollection</span> <span title="dom-HTMLAllCollection-tags">tags</span>(in DOMString tagName);
};</pre>

Expand Down Expand Up @@ -5376,7 +5376,7 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d
<pre class="idl">interface <dfn>HTMLFormControlsCollection</dfn> {
readonly attribute unsigned long <span title="dom-HTMLFormControlsCollection-length">length</span>;
caller getter <span>HTMLElement</span> <span title="dom-HTMLFormControlsCollection-item">item</span>(in unsigned long index);
caller getter Object <span title="dom-HTMLFormControlsCollection-namedItem">namedItem</span>(in DOMString name);
caller getter object <span title="dom-HTMLFormControlsCollection-namedItem">namedItem</span>(in DOMString name);
};

interface <dfn>RadioNodeList</dfn> : <span>NodeList</span> {
Expand Down Expand Up @@ -5547,8 +5547,8 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20html%3E..
<pre class="idl">interface <dfn>HTMLOptionsCollection</dfn> {
attribute unsigned long <span title="dom-HTMLOptionsCollection-length">length</span>;
caller getter <span>HTMLOptionElement</span> <span title="dom-HTMLOptionsCollection-item">item</span>(in unsigned long index);
caller getter Object <span title="dom-HTMLOptionsCollection-namedItem">namedItem</span>(in DOMString name);
void <span title="dom-HTMLOptionsCollection-add">add</span>(in <span>HTMLElement</span> element, optional in <span>HTMLElement</span> before);
caller getter object <span title="dom-HTMLOptionsCollection-namedItem">namedItem</span>(in DOMString name);
void <span title="dom-HTMLOptionsCollection-add">add</span>(in <span>HTMLElement</span> element, in optional <span>HTMLElement</span> before);
void <span title="dom-HTMLOptionsCollection-add">add</span>(in <span>HTMLElement</span> element, in long before);
void <span title="dom-HTMLOptionsCollection-remove">remove</span>(in long index);
};</pre>
Expand Down

0 comments on commit d9f5510

Please sign in to comment.