Skip to content

Commit

Permalink
[giow] (0) Remove some 'legacycaller's
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=17161
Affected topics: DOM APIs, Microdata

git-svn-id: http://svn.whatwg.org/webapps@7268 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 24, 2012
1 parent 03d5f74 commit 70d2054
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 24 deletions.
11 changes: 3 additions & 8 deletions complete.html
Expand Up @@ -9094,10 +9094,8 @@ <h4 id=collections-0><span class=secno>2.8.2 </span>Collections</h4>

<p>The <code><a href=#htmlallcollection>HTMLAllCollection</a></code>,
<code><a href=#htmlformcontrolscollection>HTMLFormControlsCollection</a></code>,
<code><a href=#htmloptionscollection>HTMLOptionsCollection</a></code>,
<!--MD-->
and <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code>
<!--MD-->
<code><a href=#htmloptionscollection>HTMLOptionsCollection</a></code>, and
<code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code>
interfaces are <a href=#collections>collections</a> derived from the
<code><a href=#htmlcollection>HTMLCollection</a></code> interface.</p>

Expand Down Expand Up @@ -9534,7 +9532,7 @@ <h5 id=htmlpropertiescollection-0><span class=secno>2.8.2.4 </span>HTMLPropertie

<pre class=idl>interface <dfn id=htmlpropertiescollection>HTMLPropertiesCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
// inherits <span title=dom-HTMLCollection-length>length</span> and <span title=dom-HTMLCollection-item>item</span>()
legacycaller getter <a href=#propertynodelist>PropertyNodeList</a>? <a href=#dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
getter <a href=#propertynodelist>PropertyNodeList</a>? <a href=#dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
readonly attribute DOMString[] <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
};

Expand All @@ -9551,13 +9549,11 @@ <h5 id=htmlpropertiescollection-0><span class=secno>2.8.2.4 </span>HTMLPropertie

<dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
<dt><var title="">collection</var>[<var title="">index</var>]</dt>
<dt><var title="">collection</var>(<var title="">index</var>)</dt>
<dd>
<p>Returns the element with index <var title="">index</var> from the collection. The items are sorted in <a href=#tree-order>tree order</a>.</p>
</dd>

<dt><var title="">propertyNodeList</var> = <var title="">collection</var> . <code title=dom-HTMLPropertiesCollection-namedItem><a href=#dom-htmlpropertiescollection-nameditem>namedItem</a></code>(<var title="">name</var>)</dt>
<dt><var title="">collection</var>(<var title="">name</var>)</dt>
<dd>
<p>Returns a <code><a href=#propertynodelist>PropertyNodeList</a></code> object containing any elements that add a property named <var title="">name</var>.</p>
</dd>
Expand Down Expand Up @@ -9615,7 +9611,6 @@ <h5 id=htmlpropertiescollection-0><span class=secno>2.8.2.4 </span>HTMLPropertie
</div>

</div><!--data-component-->
<!--MD-->


<!--TOPIC:DOM APIs-->
Expand Down
11 changes: 3 additions & 8 deletions index
Expand Up @@ -9094,10 +9094,8 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d

<p>The <code><a href=#htmlallcollection>HTMLAllCollection</a></code>,
<code><a href=#htmlformcontrolscollection>HTMLFormControlsCollection</a></code>,
<code><a href=#htmloptionscollection>HTMLOptionsCollection</a></code>,
<!--MD-->
and <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code>
<!--MD-->
<code><a href=#htmloptionscollection>HTMLOptionsCollection</a></code>, and
<code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code>
interfaces are <a href=#collections>collections</a> derived from the
<code><a href=#htmlcollection>HTMLCollection</a></code> interface.</p>

Expand Down Expand Up @@ -9534,7 +9532,7 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20html%3E..

<pre class=idl>interface <dfn id=htmlpropertiescollection>HTMLPropertiesCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
// inherits <span title=dom-HTMLCollection-length>length</span> and <span title=dom-HTMLCollection-item>item</span>()
legacycaller getter <a href=#propertynodelist>PropertyNodeList</a>? <a href=#dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
getter <a href=#propertynodelist>PropertyNodeList</a>? <a href=#dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
readonly attribute DOMString[] <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
};

Expand All @@ -9551,13 +9549,11 @@ interface <dfn id=propertynodelist>PropertyNodeList</dfn> : <a href=#nodelist>No

<dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
<dt><var title="">collection</var>[<var title="">index</var>]</dt>
<dt><var title="">collection</var>(<var title="">index</var>)</dt>
<dd>
<p>Returns the element with index <var title="">index</var> from the collection. The items are sorted in <a href=#tree-order>tree order</a>.</p>
</dd>

<dt><var title="">propertyNodeList</var> = <var title="">collection</var> . <code title=dom-HTMLPropertiesCollection-namedItem><a href=#dom-htmlpropertiescollection-nameditem>namedItem</a></code>(<var title="">name</var>)</dt>
<dt><var title="">collection</var>(<var title="">name</var>)</dt>
<dd>
<p>Returns a <code><a href=#propertynodelist>PropertyNodeList</a></code> object containing any elements that add a property named <var title="">name</var>.</p>
</dd>
Expand Down Expand Up @@ -9615,7 +9611,6 @@ interface <dfn id=propertynodelist>PropertyNodeList</dfn> : <a href=#nodelist>No
</div>

</div><!--data-component-->
<!--MD-->


<!--TOPIC:DOM APIs-->
Expand Down
11 changes: 3 additions & 8 deletions source
Expand Up @@ -9102,10 +9102,8 @@ is conforming depends on which specs apply, and leaves it at that. -->

<p>The <code>HTMLAllCollection</code>,
<code>HTMLFormControlsCollection</code>,
<code>HTMLOptionsCollection</code>,
<!--END w3c-html--><!--MD-->
and <code>HTMLPropertiesCollection</code>
<!--START w3c-html--><!--MD-->
<code>HTMLOptionsCollection</code>, and
<code>HTMLPropertiesCollection</code>
interfaces are <span>collections</span> derived from the
<code>HTMLCollection</code> interface.</p>

Expand Down Expand Up @@ -9649,7 +9647,7 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20html%3E..

<pre class="idl">interface <dfn>HTMLPropertiesCollection</dfn> : <span>HTMLCollection</span> {
// inherits <span title="dom-HTMLCollection-length">length</span> and <span title="dom-HTMLCollection-item">item</span>()
legacycaller getter <span>PropertyNodeList</span>? <span title="dom-HTMLPropertiesCollection-namedItem">namedItem</span>(DOMString name); // overrides inherited namedItem()
getter <span>PropertyNodeList</span>? <span title="dom-HTMLPropertiesCollection-namedItem">namedItem</span>(DOMString name); // overrides inherited namedItem()
readonly attribute DOMString[] <span title="dom-HTMLPropertiesCollection-names">names</span>;
};

Expand All @@ -9668,13 +9666,11 @@ interface <dfn>PropertyNodeList</dfn> : <span>NodeList</span> {

<dt><var title="">element</var> = <var title="">collection</var> . <code title="dom-HTMLCollection-item">item</code>(<var title="">index</var>)</dt>
<dt><var title="">collection</var>[<var title="">index</var>]</dt>
<dt><var title="">collection</var>(<var title="">index</var>)</dt>
<dd>
<p>Returns the element with index <var title="">index</var> from the collection. The items are sorted in <span>tree order</span>.</p>
</dd>

<dt><var title="">propertyNodeList</var> = <var title="">collection</var> . <code title="dom-HTMLPropertiesCollection-namedItem">namedItem</code>(<var title="">name</var>)</dt>
<dt><var title="">collection</var>(<var title="">name</var>)</dt>
<dd>
<p>Returns a <code>PropertyNodeList</code> object containing any elements that add a property named <var title="">name</var>.</p>
</dd>
Expand Down Expand Up @@ -9744,7 +9740,6 @@ interface <dfn>PropertyNodeList</dfn> : <span>NodeList</span> {
</div>
<!--END microdata-->
</div><!--data-component-->
<!--START w3c-html--><!--MD-->


<!--TOPIC:DOM APIs-->
Expand Down

0 comments on commit 70d2054

Please sign in to comment.