- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 01 May 2009 06:22:10 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv12340 Modified Files: Overview.html Log Message: various minor webidl fixes (credit: so) (whatwg r3056) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2215 retrieving revision 1.2216 diff -u -d -r1.2215 -r1.2216 --- Overview.html 1 May 2009 05:41:51 -0000 1.2215 +++ Overview.html 1 May 2009 06:22:07 -0000 1.2216 @@ -22911,7 +22911,7 @@ <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>; @@ -23212,7 +23212,9 @@ <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.<div class="impl"> @@ -24818,7 +24820,7 @@ 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>(); @@ -29535,7 +29537,7 @@ 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); @@ -36274,11 +36276,12 @@ <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><h3 id="the-window-object"><span class="secno">5.3 </span>The <code><a href="#window">Window</a></code> object</h3><pre class="idl">[<a href="#dom-window-item" title="dom-window-item">IndexGetter</a>, <a href="#dom-window-nameditem" title="dom-window-namedItem">NameGetter</a>=OverrideBuiltins] interface <dfn id="window">Window</dfn> {
Received on Friday, 1 May 2009 06:28:42 UTC