[html5] r4333 - [e] (0) HTMLPropertyCollection -> HTMLPropertiesCollection for consistency. Fixi [...]

whatwg at whatwg.org whatwg at whatwg.org
Sun Oct 25 02:21:24 PDT 2009


Author: ianh
Date: 2009-10-25 02:21:20 -0700 (Sun, 25 Oct 2009)
New Revision: 4333

Modified:
   complete.html
   index
   source
Log:
[e] (0) HTMLPropertyCollection -> HTMLPropertiesCollection for consistency.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=8049

Modified: complete.html
===================================================================
--- complete.html	2009-10-25 09:20:07 UTC (rev 4332)
+++ complete.html	2009-10-25 09:21:20 UTC (rev 4333)
@@ -268,7 +268,7 @@
        <li><a href=#htmlallcollection-0><span class=secno>2.7.2.2 </span>HTMLAllCollection</a></li>
        <li><a href=#htmlformcontrolscollection-0><span class=secno>2.7.2.3 </span>HTMLFormControlsCollection</a></li>
        <li><a href=#htmloptionscollection-0><span class=secno>2.7.2.4 </span>HTMLOptionsCollection</a></li>
-       <li><a href=#htmlpropertycollection-0><span class=secno>2.7.2.5 </span>HTMLPropertyCollection</a></ol></li>
+       <li><a href=#htmlpropertiescollection-0><span class=secno>2.7.2.5 </span>HTMLPropertiesCollection</a></ol></li>
      <li><a href=#domtokenlist-0><span class=secno>2.7.3 </span>DOMTokenList</a></li>
      <li><a href=#domsettabletokenlist-0><span class=secno>2.7.4 </span>DOMSettableTokenList</a></li>
      <li><a href=#safe-passing-of-structured-data><span class=secno>2.7.5 </span>Safe passing of structured data</a></li>
@@ -5630,7 +5630,7 @@
   <p>The <code><a href=#htmlcollection>HTMLCollection</a></code>, <code><a href=#htmlallcollection>HTMLAllCollection</a></code>,
   <code><a href=#htmlformcontrolscollection>HTMLFormControlsCollection</a></code>,
   <code><a href=#htmloptionscollection>HTMLOptionsCollection</a></code>, and
-  <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> interfaces represent various
+  <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> interfaces represent various
   lists of DOM nodes. Collectively, objects implementing these
   interfaces are called <dfn id=collections>collections</dfn>.</p>
 
@@ -6135,17 +6135,17 @@
   </ol><!-- see also http://ln.hixie.ch/?start=1161042744&count=1 --></div>
 
 
-  <h5 id=htmlpropertycollection-0><span class=secno>2.7.2.5 </span>HTMLPropertyCollection</h5>
+  <h5 id=htmlpropertiescollection-0><span class=secno>2.7.2.5 </span>HTMLPropertiesCollection</h5>
 
-  <p>The <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> interface represents a
+  <p>The <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> interface represents a
   <a href=#collections title=collections>collection</a> of elements that add
   name-value pairs to a particular <a href=#concept-item title=concept-item>item</a> in the <a href=#microdata>microdata</a>
   model.</p>
 
-  <pre class=idl>interface <dfn id=htmlpropertycollection>HTMLPropertyCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
+  <pre class=idl>interface <dfn id=htmlpropertiescollection>HTMLPropertiesCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
   // inherits <a href=#dom-htmlcollection-length title=dom-HTMLCollection-length>length</a> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
-  caller getter <a href=#propertynodelist>PropertyNodeList</a> <a href=#dom-htmlpropertycollection-nameditem title=dom-HTMLPropertyCollection-namedItem>namedItem</a>(in DOMString name); // overrides inherited namedItem()
-  readonly attribute <span>DOMStringList</span> <a href=#dom-htmlpropertycollection-names title=dom-HTMLPropertyCollection-names>names</a>;
+  caller getter <a href=#propertynodelist>PropertyNodeList</a> <a href=#dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem>namedItem</a>(in DOMString name); // overrides inherited namedItem()
+  readonly attribute <span>DOMStringList</span> <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
 };
 
 typedef sequence<any> <dfn id=propertyvaluearray>PropertyValueArray</dfn>;
@@ -6167,14 +6167,14 @@
     <p>Returns null if <var title="">index</var> is out of range.</p>
    </dd>
 
-   <dt><var title="">propertyNodeList</var> = <var title="">collection</var> . <code title=dom-HTMLPropertyCollection-namedItem><a href=#dom-htmlpropertycollection-nameditem>namedItem</a></code>(<var title="">name</var>)</dt>
+   <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>
    <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>
 
-   <dt><var title="">collection</var> . <code title=dom-HTMLPropertyCollection-names><a href=#dom-htmlpropertycollection-names>names</a></code></dt>
+   <dt><var title="">collection</var> . <code title=dom-HTMLPropertiesCollection-names><a href=#dom-htmlpropertiescollection-names>names</a></code></dt>
    <dd>
     <p>Returns a <code>DOMStringList</code> with the <a href=#property-names>property names</a> of the elements in the collection.</p>
    </dd>
@@ -6194,7 +6194,7 @@
   of the <a href=#property-names>property names</a> of all the elements
   <a href=#represented-by-the-collection>represented by the collection</a>.</p>
 
-  <p>The <dfn id=dom-htmlpropertycollection-names title=dom-HTMLPropertyCollection-names><code>names</code></dfn>
+  <p>The <dfn id=dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names><code>names</code></dfn>
   attribute must return a live <code>DOMStringList</code> object
   giving the <a href=#property-names>property names</a> of all the elements
   <a href=#represented-by-the-collection>represented by the collection</a>, listed in <a href=#tree-order>tree
@@ -6202,9 +6202,9 @@
   occurrence of each name. The same object must be returned each
   time.</p>
 
-  <p>The <dfn id=dom-htmlpropertycollection-nameditem title=dom-HTMLPropertyCollection-namedItem><code>namedItem(<var title="">name</var>)</code></dfn> method must return a
+  <p>The <dfn id=dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem><code>namedItem(<var title="">name</var>)</code></dfn> method must return a
   <code><a href=#propertynodelist>PropertyNodeList</a></code> object representing a live view of the
-  <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object, further filtered so that
+  <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object, further filtered so that
   the only nodes in the <code><a href=#propertynodelist>PropertyNodeList</a></code> object are those
   that have a <a href=#property-names title="property names">property name</a> equal
   to <var title="">name</var>. The nodes in the
@@ -7742,7 +7742,7 @@
            attribute DOMString <a href=#dom-itemid title=dom-itemId>itemId</a>;
            attribute DOMString <a href=#dom-itemref title=dom-itemRef>itemRef</a>;
   [PutForwards=<a href=#dom-domsettabletokenlist-value title=dom-DOMSettableTokenList-value>value</a>] readonly attribute <a href=#domsettabletokenlist>DOMSettableTokenList</a> <a href=#dom-itemprop title=dom-itemProp>itemProp</a>;
-  readonly attribute <a href=#htmlpropertycollection>HTMLPropertyCollection</a> <a href=#dom-properties title=dom-properties>properties</a>;
+  readonly attribute <a href=#htmlpropertiescollection>HTMLPropertiesCollection</a> <a href=#dom-properties title=dom-properties>properties</a>;
            attribute any <a href=#dom-itemvalue title=dom-itemValue>itemValue</a>;
 
   // <a href=#editing>user interaction</a>
@@ -44725,7 +44725,7 @@
 
   <p>Once an element representing an <a href=#concept-item title=concept-item>item</a> has been obtained, its properties
   can be extracted using the <code title=dom-properties><a href=#dom-properties>properties</a></code> IDL attribute. This
-  attribute returns an <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code>, which can
+  attribute returns an <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code>, which can
   be enumerated to go through each element that adds one or more
   properties to the item. It can also be indexed by name, which will
   return an object with a list of the elements that add properties
@@ -44745,7 +44745,7 @@
 
   </div>
 
-  <p>The <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object, when indexed by
+  <p>The <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object, when indexed by
   name in this way, actually returns a <code><a href=#propertynodelist>PropertyNodeList</a></code>
   object with all the matching properties. The
   <code><a href=#propertynodelist>PropertyNodeList</a></code> object can be used to obtained all the
@@ -44774,7 +44774,7 @@
   </div>
 
   <p>It's also possible to get a list of all the <a href=#property-names>property
-  names</a> using the object's <code title=dom-HTMLPropertyCollection-names><a href=#dom-htmlpropertycollection-names>names</a></code> IDL
+  names</a> using the object's <code title=dom-HTMLPropertiesCollection-names><a href=#dom-htmlpropertiescollection-names>names</a></code> IDL
   attribute.</p>
 
   <div class=example>
@@ -45232,9 +45232,9 @@
    <dd>
 
     <p>If the element has an <code title=attr-itemscope><a href=#attr-itemscope>itemscope</a></code> attribute, returns an
-    <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object with all the element's
+    <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object with all the element's
     properties. Otherwise, an empty
-    <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object.</p>
+    <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object.</p>
 
    </dd>
 
@@ -45279,7 +45279,7 @@
 
   <p>The <dfn id=dom-properties title=dom-properties><code>properties</code></dfn> IDL
   attribute on <a href=#html-elements>HTML elements</a> must return an
-  <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> rooted at the
+  <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> rooted at the
   <code>Document</code> node, whose filter matches only elements that
   have <a href=#property-names>property names</a> and are <a href=#the-properties-of-an-item title="the properties
   of an item">the properties of the item</a> created by the element

Modified: index
===================================================================
--- index	2009-10-25 09:20:07 UTC (rev 4332)
+++ index	2009-10-25 09:21:20 UTC (rev 4333)
@@ -258,7 +258,7 @@
        <li><a href=#htmlallcollection-0><span class=secno>2.7.2.2 </span>HTMLAllCollection</a></li>
        <li><a href=#htmlformcontrolscollection-0><span class=secno>2.7.2.3 </span>HTMLFormControlsCollection</a></li>
        <li><a href=#htmloptionscollection-0><span class=secno>2.7.2.4 </span>HTMLOptionsCollection</a></li>
-       <li><a href=#htmlpropertycollection-0><span class=secno>2.7.2.5 </span>HTMLPropertyCollection</a></ol></li>
+       <li><a href=#htmlpropertiescollection-0><span class=secno>2.7.2.5 </span>HTMLPropertiesCollection</a></ol></li>
      <li><a href=#domtokenlist-0><span class=secno>2.7.3 </span>DOMTokenList</a></li>
      <li><a href=#domsettabletokenlist-0><span class=secno>2.7.4 </span>DOMSettableTokenList</a></li>
      <li><a href=#safe-passing-of-structured-data><span class=secno>2.7.5 </span>Safe passing of structured data</a></li>
@@ -5440,7 +5440,7 @@
   <p>The <code><a href=#htmlcollection>HTMLCollection</a></code>, <code><a href=#htmlallcollection>HTMLAllCollection</a></code>,
   <code><a href=#htmlformcontrolscollection>HTMLFormControlsCollection</a></code>,
   <code><a href=#htmloptionscollection>HTMLOptionsCollection</a></code>, and
-  <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> interfaces represent various
+  <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> interfaces represent various
   lists of DOM nodes. Collectively, objects implementing these
   interfaces are called <dfn id=collections>collections</dfn>.</p>
 
@@ -5945,17 +5945,17 @@
   </ol><!-- see also http://ln.hixie.ch/?start=1161042744&count=1 --></div>
 
 
-  <h5 id=htmlpropertycollection-0><span class=secno>2.7.2.5 </span>HTMLPropertyCollection</h5>
+  <h5 id=htmlpropertiescollection-0><span class=secno>2.7.2.5 </span>HTMLPropertiesCollection</h5>
 
-  <p>The <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> interface represents a
+  <p>The <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> interface represents a
   <a href=#collections title=collections>collection</a> of elements that add
   name-value pairs to a particular <a href=#concept-item title=concept-item>item</a> in the <a href=#microdata>microdata</a>
   model.</p>
 
-  <pre class=idl>interface <dfn id=htmlpropertycollection>HTMLPropertyCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
+  <pre class=idl>interface <dfn id=htmlpropertiescollection>HTMLPropertiesCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
   // inherits <a href=#dom-htmlcollection-length title=dom-HTMLCollection-length>length</a> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
-  caller getter <a href=#propertynodelist>PropertyNodeList</a> <a href=#dom-htmlpropertycollection-nameditem title=dom-HTMLPropertyCollection-namedItem>namedItem</a>(in DOMString name); // overrides inherited namedItem()
-  readonly attribute <span>DOMStringList</span> <a href=#dom-htmlpropertycollection-names title=dom-HTMLPropertyCollection-names>names</a>;
+  caller getter <a href=#propertynodelist>PropertyNodeList</a> <a href=#dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem>namedItem</a>(in DOMString name); // overrides inherited namedItem()
+  readonly attribute <span>DOMStringList</span> <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
 };
 
 typedef sequence<any> <dfn id=propertyvaluearray>PropertyValueArray</dfn>;
@@ -5977,14 +5977,14 @@
     <p>Returns null if <var title="">index</var> is out of range.</p>
    </dd>
 
-   <dt><var title="">propertyNodeList</var> = <var title="">collection</var> . <code title=dom-HTMLPropertyCollection-namedItem><a href=#dom-htmlpropertycollection-nameditem>namedItem</a></code>(<var title="">name</var>)</dt>
+   <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>
    <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>
 
-   <dt><var title="">collection</var> . <code title=dom-HTMLPropertyCollection-names><a href=#dom-htmlpropertycollection-names>names</a></code></dt>
+   <dt><var title="">collection</var> . <code title=dom-HTMLPropertiesCollection-names><a href=#dom-htmlpropertiescollection-names>names</a></code></dt>
    <dd>
     <p>Returns a <code>DOMStringList</code> with the <a href=#property-names>property names</a> of the elements in the collection.</p>
    </dd>
@@ -6004,7 +6004,7 @@
   of the <a href=#property-names>property names</a> of all the elements
   <a href=#represented-by-the-collection>represented by the collection</a>.</p>
 
-  <p>The <dfn id=dom-htmlpropertycollection-names title=dom-HTMLPropertyCollection-names><code>names</code></dfn>
+  <p>The <dfn id=dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names><code>names</code></dfn>
   attribute must return a live <code>DOMStringList</code> object
   giving the <a href=#property-names>property names</a> of all the elements
   <a href=#represented-by-the-collection>represented by the collection</a>, listed in <a href=#tree-order>tree
@@ -6012,9 +6012,9 @@
   occurrence of each name. The same object must be returned each
   time.</p>
 
-  <p>The <dfn id=dom-htmlpropertycollection-nameditem title=dom-HTMLPropertyCollection-namedItem><code>namedItem(<var title="">name</var>)</code></dfn> method must return a
+  <p>The <dfn id=dom-htmlpropertiescollection-nameditem title=dom-HTMLPropertiesCollection-namedItem><code>namedItem(<var title="">name</var>)</code></dfn> method must return a
   <code><a href=#propertynodelist>PropertyNodeList</a></code> object representing a live view of the
-  <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object, further filtered so that
+  <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object, further filtered so that
   the only nodes in the <code><a href=#propertynodelist>PropertyNodeList</a></code> object are those
   that have a <a href=#property-names title="property names">property name</a> equal
   to <var title="">name</var>. The nodes in the
@@ -7552,7 +7552,7 @@
            attribute DOMString <a href=#dom-itemid title=dom-itemId>itemId</a>;
            attribute DOMString <a href=#dom-itemref title=dom-itemRef>itemRef</a>;
   [PutForwards=<a href=#dom-domsettabletokenlist-value title=dom-DOMSettableTokenList-value>value</a>] readonly attribute <a href=#domsettabletokenlist>DOMSettableTokenList</a> <a href=#dom-itemprop title=dom-itemProp>itemProp</a>;
-  readonly attribute <a href=#htmlpropertycollection>HTMLPropertyCollection</a> <a href=#dom-properties title=dom-properties>properties</a>;
+  readonly attribute <a href=#htmlpropertiescollection>HTMLPropertiesCollection</a> <a href=#dom-properties title=dom-properties>properties</a>;
            attribute any <a href=#dom-itemvalue title=dom-itemValue>itemValue</a>;
 
   // <a href=#editing>user interaction</a>
@@ -44535,7 +44535,7 @@
 
   <p>Once an element representing an <a href=#concept-item title=concept-item>item</a> has been obtained, its properties
   can be extracted using the <code title=dom-properties><a href=#dom-properties>properties</a></code> IDL attribute. This
-  attribute returns an <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code>, which can
+  attribute returns an <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code>, which can
   be enumerated to go through each element that adds one or more
   properties to the item. It can also be indexed by name, which will
   return an object with a list of the elements that add properties
@@ -44555,7 +44555,7 @@
 
   </div>
 
-  <p>The <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object, when indexed by
+  <p>The <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object, when indexed by
   name in this way, actually returns a <code><a href=#propertynodelist>PropertyNodeList</a></code>
   object with all the matching properties. The
   <code><a href=#propertynodelist>PropertyNodeList</a></code> object can be used to obtained all the
@@ -44584,7 +44584,7 @@
   </div>
 
   <p>It's also possible to get a list of all the <a href=#property-names>property
-  names</a> using the object's <code title=dom-HTMLPropertyCollection-names><a href=#dom-htmlpropertycollection-names>names</a></code> IDL
+  names</a> using the object's <code title=dom-HTMLPropertiesCollection-names><a href=#dom-htmlpropertiescollection-names>names</a></code> IDL
   attribute.</p>
 
   <div class=example>
@@ -45042,9 +45042,9 @@
    <dd>
 
     <p>If the element has an <code title=attr-itemscope><a href=#attr-itemscope>itemscope</a></code> attribute, returns an
-    <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object with all the element's
+    <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object with all the element's
     properties. Otherwise, an empty
-    <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> object.</p>
+    <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> object.</p>
 
    </dd>
 
@@ -45089,7 +45089,7 @@
 
   <p>The <dfn id=dom-properties title=dom-properties><code>properties</code></dfn> IDL
   attribute on <a href=#html-elements>HTML elements</a> must return an
-  <code><a href=#htmlpropertycollection>HTMLPropertyCollection</a></code> rooted at the
+  <code><a href=#htmlpropertiescollection>HTMLPropertiesCollection</a></code> rooted at the
   <code>Document</code> node, whose filter matches only elements that
   have <a href=#property-names>property names</a> and are <a href=#the-properties-of-an-item title="the properties
   of an item">the properties of the item</a> created by the element

Modified: source
===================================================================
--- source	2009-10-25 09:20:07 UTC (rev 4332)
+++ source	2009-10-25 09:21:20 UTC (rev 4333)
@@ -5155,7 +5155,7 @@
   <p>The <code>HTMLCollection</code>, <code>HTMLAllCollection</code>,
   <code>HTMLFormControlsCollection</code>,
   <code>HTMLOptionsCollection</code>, and
-  <code>HTMLPropertyCollection</code> interfaces represent various
+  <code>HTMLPropertiesCollection</code> interfaces represent various
   lists of DOM nodes. Collectively, objects implementing these
   interfaces are called <dfn>collections</dfn>.</p>
 
@@ -5772,18 +5772,18 @@
   </div>
 
 
-  <h5>HTMLPropertyCollection</h5>
+  <h5>HTMLPropertiesCollection</h5>
 
-  <p>The <code>HTMLPropertyCollection</code> interface represents a
+  <p>The <code>HTMLPropertiesCollection</code> interface represents a
   <span title="collections">collection</span> of elements that add
   name-value pairs to a particular <span
   title="concept-item">item</span> in the <span>microdata</span>
   model.</p>
 
-  <pre class="idl">interface <dfn>HTMLPropertyCollection</dfn> : <span>HTMLCollection</span> {
+  <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>()
-  caller getter <span>PropertyNodeList</span> <span title="dom-HTMLPropertyCollection-namedItem">namedItem</span>(in DOMString name); // overrides inherited namedItem()
-  readonly attribute <span>DOMStringList</span> <span title="dom-HTMLPropertyCollection-names">names</span>;
+  caller getter <span>PropertyNodeList</span> <span title="dom-HTMLPropertiesCollection-namedItem">namedItem</span>(in DOMString name); // overrides inherited namedItem()
+  readonly attribute <span>DOMStringList</span> <span title="dom-HTMLPropertiesCollection-names">names</span>;
 };
 
 typedef sequence<any> <dfn>PropertyValueArray</dfn>;
@@ -5807,14 +5807,14 @@
     <p>Returns null if <var title="">index</var> is out of range.</p>
    </dd>
 
-   <dt><var title="">propertyNodeList</var> = <var title="">collection</var> . <code title="dom-HTMLPropertyCollection-namedItem">namedItem</code>(<var title="">name</var>)</dt>
+   <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>
    <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>
 
-   <dt><var title="">collection</var> . <code title="dom-HTMLPropertyCollection-names">names</code></dt>
+   <dt><var title="">collection</var> . <code title="dom-HTMLPropertiesCollection-names">names</code></dt>
    <dd>
     <p>Returns a <code>DOMStringList</code> with the <span>property names</span> of the elements in the collection.</p>
    </dd>
@@ -5837,7 +5837,7 @@
   <span>represented by the collection</span>.</p>
 
   <p>The <dfn
-  title="dom-HTMLPropertyCollection-names"><code>names</code></dfn>
+  title="dom-HTMLPropertiesCollection-names"><code>names</code></dfn>
   attribute must return a live <code>DOMStringList</code> object
   giving the <span>property names</span> of all the elements
   <span>represented by the collection</span>, listed in <span>tree
@@ -5846,10 +5846,10 @@
   time.</p>
 
   <p>The <dfn
-  title="dom-HTMLPropertyCollection-namedItem"><code>namedItem(<var
+  title="dom-HTMLPropertiesCollection-namedItem"><code>namedItem(<var
   title="">name</var>)</code></dfn> method must return a
   <code>PropertyNodeList</code> object representing a live view of the
-  <code>HTMLPropertyCollection</code> object, further filtered so that
+  <code>HTMLPropertiesCollection</code> object, further filtered so that
   the only nodes in the <code>PropertyNodeList</code> object are those
   that have a <span title="property names">property name</span> equal
   to <var title="">name</var>. The nodes in the
@@ -7629,7 +7629,7 @@
            attribute DOMString <span title="dom-itemId">itemId</span>;
            attribute DOMString <span title="dom-itemRef">itemRef</span>;
   [PutForwards=<span title="dom-DOMSettableTokenList-value">value</span>] readonly attribute <span>DOMSettableTokenList</span> <span title="dom-itemProp">itemProp</span>;
-  readonly attribute <span>HTMLPropertyCollection</span> <span title="dom-properties">properties</span>;
+  readonly attribute <span>HTMLPropertiesCollection</span> <span title="dom-properties">properties</span>;
            attribute any <span title="dom-itemValue">itemValue</span>;
 
   // <span>user interaction</span>
@@ -49729,7 +49729,7 @@
   title="concept-item">item</span> has been obtained, its properties
   can be extracted using the <code
   title="dom-properties">properties</code> IDL attribute. This
-  attribute returns an <code>HTMLPropertyCollection</code>, which can
+  attribute returns an <code>HTMLPropertiesCollection</code>, which can
   be enumerated to go through each element that adds one or more
   properties to the item. It can also be indexed by name, which will
   return an object with a list of the elements that add properties
@@ -49750,7 +49750,7 @@
 
   </div>
 
-  <p>The <code>HTMLPropertyCollection</code> object, when indexed by
+  <p>The <code>HTMLPropertiesCollection</code> object, when indexed by
   name in this way, actually returns a <code>PropertyNodeList</code>
   object with all the matching properties. The
   <code>PropertyNodeList</code> object can be used to obtained all the
@@ -49781,7 +49781,7 @@
 
   <p>It's also possible to get a list of all the <span>property
   names</span> using the object's <code
-  title="dom-HTMLPropertyCollection-names">names</code> IDL
+  title="dom-HTMLPropertiesCollection-names">names</code> IDL
   attribute.</p>
 
   <div class="example">
@@ -50333,9 +50333,9 @@
 
     <p>If the element has an <code
     title="attr-itemscope">itemscope</code> attribute, returns an
-    <code>HTMLPropertyCollection</code> object with all the element's
+    <code>HTMLPropertiesCollection</code> object with all the element's
     properties. Otherwise, an empty
-    <code>HTMLPropertyCollection</code> object.</p>
+    <code>HTMLPropertiesCollection</code> object.</p>
 
    </dd>
 
@@ -50393,7 +50393,7 @@
 
   <p>The <dfn title="dom-properties"><code>properties</code></dfn> IDL
   attribute on <span>HTML elements</span> must return an
-  <code>HTMLPropertyCollection</code> rooted at the
+  <code>HTMLPropertiesCollection</code> rooted at the
   <code>Document</code> node, whose filter matches only elements that
   have <span>property names</span> and are <span title="the properties
   of an item">the properties of the item</span> created by the element




More information about the Commit-Watchers mailing list