Skip to content

Commit

Permalink
[e] (0) various minor webidl fixes (credit: so)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3056 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 1, 2009
1 parent 7c38858 commit f6d20da
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 19 deletions.
21 changes: 12 additions & 9 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -25918,7 +25918,7 @@ function AddCloud(data, x, y) { ... }</pre>
<dt>DOM interface:</dt>
<dd>
<pre class=idl>interface <dfn id=htmltableelement>HTMLTableElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
attribute <span>HTMLTableCaptionElement</span> <a href=#dom-table-caption title=dom-table-caption>caption</a>;
attribute <a href=#htmltablecaptionelement>HTMLTableCaptionElement</a> <a href=#dom-table-caption title=dom-table-caption>caption</a>;
<a href=#htmlelement>HTMLElement</a> <a href=#dom-table-createcaption title=dom-table-createCaption>createCaption</a>();
void <a href=#dom-table-deletecaption title=dom-table-deleteCaption>deleteCaption</a>();
attribute <a href=#htmltablesectionelement>HTMLTableSectionElement</a> <a href=#dom-table-thead title=dom-table-tHead>tHead</a>;
Expand Down Expand Up @@ -26238,7 +26238,9 @@ function AddCloud(data, x, y) { ... }</pre>
<dt>Content attributes:</dt>
<dd><a href=#global-attributes>Global attributes</a></dd>
<dt>DOM interface:</dt>
<dd>Uses <code><a href=#htmlelement>HTMLElement</a></code>.</dd>
<dd>
<pre class=idl>interface <dfn id=htmltablecaptionelement>HTMLTableCaptionElement</dfn> : <a href=#htmlelement>HTMLElement</a> {};</pre>
</dd>
</dl><p>The <code><a href=#the-caption-element>caption</a></code> element <a href=#represents>represents</a> the title of the
<code><a href=#the-table-element>table</a></code> that is its parent, if it has a parent and that
is a <code><a href=#the-table-element>table</a></code> element.</p>
Expand Down Expand Up @@ -27970,7 +27972,7 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H

readonly attribute <a href=#htmlformcontrolscollection-0>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>;
[IndexGetter] any <a href=#dom-form-item title=dom-form-item>item</a>(in DOMString name);
[IndexGetter] any <a href=#dom-form-item title=dom-form-item>item</a>(in unsigned long index);
[NameGetter=OverrideBuiltins] any <a href=#dom-form-nameditem title=dom-form-namedItem>namedItem</a>(in DOMString name);

void <a href=#dom-form-submit title=dom-form-submit>submit</a>();
Expand Down Expand Up @@ -33317,7 +33319,7 @@ interface <dfn id=htmlselectelement>HTMLSelectElement</dfn> : <a href=#htmleleme

readonly attribute <a href=#htmloptionscollection-0>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>;
[IndexGetter] any <a href=#dom-select-item title=dom-select-item>item</a>(in DOMString name);
[IndexGetter] any <a href=#dom-select-item title=dom-select-item>item</a>(in unsigned long index);
[NameGetter] any <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=#htmlelement>HTMLElement</a> element, [Optional] in <a href=#htmlelement>HTMLElement</a> before);
void <a href=#dom-select-add title=dom-select-add>add</a>(in <a href=#htmlelement>HTMLElement</a> element, in long before);
Expand Down Expand Up @@ -40715,11 +40717,12 @@ explain that only direct children of the <menu> matter
<h3 id=the-windowproxy-object><span class=secno>5.2 </span>The <code><a href=#windowproxy>WindowProxy</a></code> object</h3>

<p>As mentioned earlier, each <a href=#browsing-context>browsing context</a> has a
<dfn id=windowproxy>WindowProxy</dfn> object. This object is unusual in that it
must proxy all operations to the <code><a href=#window>Window</a></code> object of the
<a href=#browsing-context>browsing context</a>'s <a href=#active-document>active document</a>. It is
thus indistinguishable from that <code><a href=#window>Window</a></code> object in every
way, except that it is not equal to it.</p>
<dfn id=windowproxy><code>WindowProxy</code></dfn> object. This object is unusual
in that it must proxy all operations to the <code><a href=#window>Window</a></code>
object of the <a href=#browsing-context>browsing context</a>'s <a href=#active-document>active
document</a>. It is thus indistinguishable from that
<code><a href=#window>Window</a></code> object in every way, except that it is not equal
to it.</p>

</div>

Expand Down
22 changes: 12 additions & 10 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -28984,7 +28984,9 @@ function AddCloud(data, x, y) { ... }</pre>
<dt>Content attributes:</dt>
<dd><span>Global attributes</span></dd>
<dt>DOM interface:</dt>
<dd>Uses <code>HTMLElement</code>.</dd>
<dd>
<pre class="idl">interface <dfn>HTMLTableCaptionElement</dfn> : <span>HTMLElement</span> {};</pre>
</dd>
</dl>

<p>The <code>caption</code> element <span>represents</span> the title of the
Expand Down Expand Up @@ -31100,7 +31102,7 @@ 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>;
[IndexGetter] any <span title="dom-form-item">item</span>(in DOMString name);
[IndexGetter] any <span title="dom-form-item">item</span>(in unsigned long index);
[NameGetter=OverrideBuiltins] any <span title="dom-form-namedItem">namedItem</span>(in DOMString name);

void <span title="dom-form-submit">submit</span>();
Expand Down Expand Up @@ -37252,7 +37254,7 @@ interface <dfn>HTMLSelectElement</dfn> : <span>HTMLElement</span> {

readonly attribute <span>HTMLOptionsCollection</span> <span title="dom-select-options">options</span>;
attribute unsigned long <span title="dom-select-length">length</span>;
[IndexGetter] any <span title="dom-select-item">item</span>(in DOMString name);
[IndexGetter] any <span title="dom-select-item">item</span>(in unsigned long index);
[NameGetter] any <span title="dom-select-namedItem">namedItem</span>(in DOMString name);
void <span title="dom-select-add">add</span>(in <span>HTMLElement</span> element, [Optional] in <span>HTMLElement</span> before);
void <span title="dom-select-add">add</span>(in <span>HTMLElement</span> element, in long before);
Expand Down Expand Up @@ -45963,11 +45965,12 @@ explain that only direct children of the <menu> matter
<h3>The <code>WindowProxy</code> object</h3>

<p>As mentioned earlier, each <span>browsing context</span> has a
<dfn>WindowProxy</dfn> object. This object is unusual in that it
must proxy all operations to the <code>Window</code> object of the
<span>browsing context</span>'s <span>active document</span>. It is
thus indistinguishable from that <code>Window</code> object in every
way, except that it is not equal to it.</p>
<dfn><code>WindowProxy</code></dfn> object. This object is unusual
in that it must proxy all operations to the <code>Window</code>
object of the <span>browsing context</span>'s <span>active
document</span>. It is thus indistinguishable from that
<code>Window</code> object in every way, except that it is not equal
to it.</p>

</div>

Expand Down Expand Up @@ -54262,8 +54265,7 @@ interface <dfn>SQLTransactionSync</dfn> {
<hr>

<p>Errors in the synchronous database API are reported using
exceptions that implement the <code>SQLException</code>
interface:</p>
<code>SQLException</code> exceptions:</p>

<pre class="idl">exception <dfn>SQLException</dfn> {
readonly attribute unsigned long <span title="dom-SQLException-code">code</span>;
Expand Down

0 comments on commit f6d20da

Please sign in to comment.