[html5] r7692 - [e] (0) Cross-ref instances of 'the method of the same name'. Fixing https://www [...]

whatwg at whatwg.org whatwg at whatwg.org
Mon Feb 4 16:14:53 PST 2013


Author: ianh
Date: 2013-02-04 16:14:52 -0800 (Mon, 04 Feb 2013)
New Revision: 7692

Modified:
   complete.html
   index
   source
Log:
[e] (0) Cross-ref instances of 'the method of the same name'.
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=20042
Affected topics: DOM APIs, HTML, Workers

Modified: complete.html
===================================================================
--- complete.html	2013-02-04 20:57:56 UTC (rev 7691)
+++ complete.html	2013-02-05 00:14:52 UTC (rev 7692)
@@ -248,7 +248,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 4 February 2013</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 5 February 2013</h2>
    </hgroup><dl><dt><strong>Web developer edition:</strong></dt>
     <dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
     <dt>Multiple-page version:</dt>
@@ -4029,7 +4029,9 @@
      <li><dfn id=processinginstruction><code>ProcessingInstruction</code></dfn> interface</li>
      <li><dfn id=text><code>Text</code></dfn> interface</li>
 
-     <li><dfn id=htmlcollection><code>HTMLCollection</code></dfn> interface, and the terms <dfn id=collections>collections</dfn> and <dfn id=represented-by-the-collection>represented by the collection</dfn></li>
+     <li><dfn id=htmlcollection><code>HTMLCollection</code></dfn> interface</li>
+     <li><dfn id=dom-htmlcollection-item title=dom-HTMLCollection-item><code>item()</code> method</dfn>
+     <li>The terms <dfn id=collections>collections</dfn> and <dfn id=represented-by-the-collection>represented by the collection</dfn></li>
 
      <li><dfn id=domtokenlist><code>DOMTokenList</code></dfn> interface</li>
      <li><dfn id=domsettabletokenlist><code>DOMSettableTokenList</code></dfn> interface</li>
@@ -8662,7 +8664,7 @@
   legacy <code title=dom-document-all><a href=#dom-document-all>document.all</a></code> attribute.</p>
 
   <pre class=idl>interface <dfn id=htmlallcollection>HTMLAllCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
-  // inherits <span title=dom-HTMLCollection-length>length</span> and <span title=dom-HTMLCollection-item>item</span>(unsigned long index)
+  // inherits <span title=dom-HTMLCollection-length>length</span> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>(unsigned long index)
   object? <a href=#dom-htmlallcollection-item-string title=dom-HTMLAllCollection-item-string>item</a>(DOMString name);
   legacycaller getter object? <a href=#dom-htmlallcollection-nameditem title=dom-HTMLAllCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
   <a href=#htmlallcollection>HTMLAllCollection</a> <a href=#dom-htmlallcollection-tags title=dom-HTMLAllCollection-tags>tags</a>(DOMString tagName);
@@ -8673,7 +8675,7 @@
     <p>Returns the number of elements in the collection.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></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>
@@ -8752,7 +8754,7 @@
   <code><a href=#the-fieldset-element>fieldset</a></code> elements.</p>
 
   <pre class=idl>interface <dfn id=htmlformcontrolscollection>HTMLFormControlsCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
-  // inherits <span title=dom-HTMLCollection-length>length</span> and <span title=dom-HTMLCollection-item>item</span>()
+  // inherits <span title=dom-HTMLCollection-length>length</span> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
   legacycaller getter object? <a href=#dom-htmlformcontrolscollection-nameditem title=dom-HTMLFormControlsCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
 };
 
@@ -8765,7 +8767,7 @@
     <p>Returns the number of elements in the collection.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></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>
@@ -8849,7 +8851,7 @@
   attributes and methods that manipulate that element's descendants.</p>
 
   <pre class=idl>interface <dfn id=htmloptionscollection>HTMLOptionsCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
-  // inherits <span title=dom-HTMLCollection-item>item</span>()
+  // inherits <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
            attribute unsigned long <a href=#dom-htmloptionscollection-length title=dom-HTMLOptionsCollection-length>length</a>; // overrides inherited length
   legacycaller getter object? <a href=#dom-htmloptionscollection-nameditem title=dom-HTMLOptionsCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
   <a href=#dom-htmloptionscollection-setter title=dom-HTMLOptionsCollection-setter>setter creator</a> void (unsigned long index, <a href=#htmloptionelement>HTMLOptionElement</a>? option);
@@ -8865,7 +8867,7 @@
     <p>When set to a greater number, adds new blank <code><a href=#the-option-element>option</a></code> elements to that container.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></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>
@@ -9005,7 +9007,7 @@
   <a href=#concept-item title=concept-item>item</a> in the <a href=#microdata>microdata</a> model.</p>
 
   <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>()
+  // inherits <span title=dom-HTMLCollection-length>length</span> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
   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>;
 };
@@ -9021,7 +9023,7 @@
     <p>Returns the number of elements in the collection.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></code>(<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>
@@ -52109,11 +52111,12 @@
   number of nodes <a href=#represented-by-the-collection title="represented by the collection">represented</a> by the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection. On setting, it must act like the attribute
   of the same name on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection.</p>
 
+<!--CLEANUP-->
   <p>The <dfn id=dom-select-item title=dom-select-item><code>item(<var title="">index</var>)</code></dfn> method must
-  return the value returned by the method of the same name on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
+  return the value returned by <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>the method of the same name</a> on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
 
   <p>The <dfn id=dom-select-nameditem title=dom-select-namedItem><code>namedItem(<var title="">name</var>)</code></dfn>
-  method must return the value returned by the method of the same name on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
+  method must return the value returned by <a href=#dom-htmloptionscollection-nameditem title=dom-HTMLOptionsCollection-namedItem>the method of the same name</a> on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
 
   <p>When the user agent is to <dfn id=dom-htmlselectelement-setter title=dom-HTMLSelectElement-setter>set the value of a new
   indexed property</dfn> for a given property index <var title="">index</var> to a new value <var title="">value</var>, it must instead <a href=#dom-htmloptionscollection-setter title=dom-HTMLOptionsCollection-setter>set the value
@@ -81093,7 +81096,6 @@
   <code title=dom-WorkerGlobalScope-location><a href=#dom-workerglobalscope-location></a></code> attribute.</p>
 
 
-
   <h5 id=dedicated-workers-and-the-dedicatedworkerglobalscope-interface><span class=secno>9.2.1.2 </span>Dedicated workers and the <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> interface</h5>
 
   <pre class=idl>interface <dfn id=dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</dfn> : <a href=#workerglobalscope>WorkerGlobalScope</a> {
@@ -81116,15 +81118,19 @@
   <p>All messages received by that port must immediately be retargeted
   at the <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> object.</p>
 
-  <p>The <dfn id=dom-dedicatedworkerglobalscope-postmessage title=dom-DedicatedWorkerGlobalScope-postMessage><code>postMessage()</code></dfn><!--
-  and <dfn
-  title="dom-DedicatedWorkerGlobalScope-startConversation"><code>startConversation()</code></dfn>-->
-  method<!--s (startConversation)--> on
-  <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> objects must act as if, when
-  invoked, it<!--/they (startConversation)--> immediately invoked the
-  method of the same name on the port, with the same arguments, and
-  returned the same return value.</p>
+  <p>The <dfn id=dom-dedicatedworkerglobalscope-postmessage title=dom-DedicatedWorkerGlobalScope-postMessage><code>postMessage()</code></dfn>
+  method on <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> objects must act as if, when invoked, it
+  immediately invoked <a href=#dom-messageport-postmessage title=dom-MessagePort-postMessage>the method of the same name</a>
+  on the port, with the same arguments, and returned the same return value.</p>
 
+<!--
+  <p>Similarly, the <dfn
+  title="dom-DedicatedWorkerGlobalScope-startConversation"><code>startConversation()</code></dfn>
+  method on <code>DedicatedWorkerGlobalScope</code> objects must act as if, when invoked, it
+  immediately invoked <span title="dom-MessagePort-startConversation">the method of the same
+  name</span> on the port, with the same arguments, and returned the same return value.</p>
+-->
+
   <p>The following are the <a href=#event-handlers>event handlers</a> (and their
   corresponding <a href=#event-handler-event-type title="event handler event type">event handler
   event types</a>) that must be supported, as IDL attributes, by
@@ -81692,14 +81698,17 @@
   <p>All messages received by that port must immediately be retargeted
   at the <code><a href=#worker>Worker</a></code> object.</p>
 
-  <p>The <dfn id=dom-worker-postmessage title=dom-Worker-postMessage><code>postMessage()</code></dfn><!--
-  and <dfn
-  title="dom-Worker-startConversation"><code>startConversation()</code></dfn>-->
-  method<!--s (startConversation)--> on <code><a href=#worker>Worker</a></code> objects
-  must act as if, when invoked, it<!--/they (startConversation)-->
-  immediately invoked the method of the same name on the port, with
-  the same arguments, and returned the same return value.</p>
+  <p>The <dfn id=dom-worker-postmessage title=dom-Worker-postMessage><code>postMessage()</code></dfn> method on
+  <code><a href=#worker>Worker</a></code> objects must act as if, when invoked, it immediately invoked <a href=#dom-messageport-postmessage title=dom-MessagePort-postMessage>the method of the same name</a> on the port, with the same
+  arguments, and returned the same return value.</p>
 
+<!--
+  <p>Similarly, the <dfn title="dom-Worker-startConversation"><code>startConversation()</code></dfn>
+  method on <code>Worker</code> objects must act as if, when invoked, it immediately invoked <span
+  title="dom-MessagePort-startConversation">the method of the same name</span> on the port, with the
+  same arguments, and returned the same return value.</p>
+-->
+
   <div class=example>
 
    <p>The <code title=dom-Worker-postMessage><a href=#dom-worker-postmessage>postMessage()</a></code>

Modified: index
===================================================================
--- index	2013-02-04 20:57:56 UTC (rev 7691)
+++ index	2013-02-05 00:14:52 UTC (rev 7692)
@@ -248,7 +248,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 4 February 2013</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 5 February 2013</h2>
    </hgroup><dl><dt><strong>Web developer edition:</strong></dt>
     <dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
     <dt>Multiple-page version:</dt>
@@ -4029,7 +4029,9 @@
      <li><dfn id=processinginstruction><code>ProcessingInstruction</code></dfn> interface</li>
      <li><dfn id=text><code>Text</code></dfn> interface</li>
 
-     <li><dfn id=htmlcollection><code>HTMLCollection</code></dfn> interface, and the terms <dfn id=collections>collections</dfn> and <dfn id=represented-by-the-collection>represented by the collection</dfn></li>
+     <li><dfn id=htmlcollection><code>HTMLCollection</code></dfn> interface</li>
+     <li><dfn id=dom-htmlcollection-item title=dom-HTMLCollection-item><code>item()</code> method</dfn>
+     <li>The terms <dfn id=collections>collections</dfn> and <dfn id=represented-by-the-collection>represented by the collection</dfn></li>
 
      <li><dfn id=domtokenlist><code>DOMTokenList</code></dfn> interface</li>
      <li><dfn id=domsettabletokenlist><code>DOMSettableTokenList</code></dfn> interface</li>
@@ -8662,7 +8664,7 @@
   legacy <code title=dom-document-all><a href=#dom-document-all>document.all</a></code> attribute.</p>
 
   <pre class=idl>interface <dfn id=htmlallcollection>HTMLAllCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
-  // inherits <span title=dom-HTMLCollection-length>length</span> and <span title=dom-HTMLCollection-item>item</span>(unsigned long index)
+  // inherits <span title=dom-HTMLCollection-length>length</span> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>(unsigned long index)
   object? <a href=#dom-htmlallcollection-item-string title=dom-HTMLAllCollection-item-string>item</a>(DOMString name);
   legacycaller getter object? <a href=#dom-htmlallcollection-nameditem title=dom-HTMLAllCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
   <a href=#htmlallcollection>HTMLAllCollection</a> <a href=#dom-htmlallcollection-tags title=dom-HTMLAllCollection-tags>tags</a>(DOMString tagName);
@@ -8673,7 +8675,7 @@
     <p>Returns the number of elements in the collection.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></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>
@@ -8752,7 +8754,7 @@
   <code><a href=#the-fieldset-element>fieldset</a></code> elements.</p>
 
   <pre class=idl>interface <dfn id=htmlformcontrolscollection>HTMLFormControlsCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
-  // inherits <span title=dom-HTMLCollection-length>length</span> and <span title=dom-HTMLCollection-item>item</span>()
+  // inherits <span title=dom-HTMLCollection-length>length</span> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
   legacycaller getter object? <a href=#dom-htmlformcontrolscollection-nameditem title=dom-HTMLFormControlsCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
 };
 
@@ -8765,7 +8767,7 @@
     <p>Returns the number of elements in the collection.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></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>
@@ -8849,7 +8851,7 @@
   attributes and methods that manipulate that element's descendants.</p>
 
   <pre class=idl>interface <dfn id=htmloptionscollection>HTMLOptionsCollection</dfn> : <a href=#htmlcollection>HTMLCollection</a> {
-  // inherits <span title=dom-HTMLCollection-item>item</span>()
+  // inherits <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
            attribute unsigned long <a href=#dom-htmloptionscollection-length title=dom-HTMLOptionsCollection-length>length</a>; // overrides inherited length
   legacycaller getter object? <a href=#dom-htmloptionscollection-nameditem title=dom-HTMLOptionsCollection-namedItem>namedItem</a>(DOMString name); // overrides inherited namedItem()
   <a href=#dom-htmloptionscollection-setter title=dom-HTMLOptionsCollection-setter>setter creator</a> void (unsigned long index, <a href=#htmloptionelement>HTMLOptionElement</a>? option);
@@ -8865,7 +8867,7 @@
     <p>When set to a greater number, adds new blank <code><a href=#the-option-element>option</a></code> elements to that container.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></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>
@@ -9005,7 +9007,7 @@
   <a href=#concept-item title=concept-item>item</a> in the <a href=#microdata>microdata</a> model.</p>
 
   <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>()
+  // inherits <span title=dom-HTMLCollection-length>length</span> and <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>item</a>()
   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>;
 };
@@ -9021,7 +9023,7 @@
     <p>Returns the number of elements in the collection.</p>
    </dd>
 
-   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item>item</code>(<var title="">index</var>)</dt>
+   <dt><var title="">element</var> = <var title="">collection</var> . <code title=dom-HTMLCollection-item><a href=#dom-htmlcollection-item>item</a></code>(<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>
@@ -52109,11 +52111,12 @@
   number of nodes <a href=#represented-by-the-collection title="represented by the collection">represented</a> by the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection. On setting, it must act like the attribute
   of the same name on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection.</p>
 
+<!--CLEANUP-->
   <p>The <dfn id=dom-select-item title=dom-select-item><code>item(<var title="">index</var>)</code></dfn> method must
-  return the value returned by the method of the same name on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
+  return the value returned by <a href=#dom-htmlcollection-item title=dom-HTMLCollection-item>the method of the same name</a> on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
 
   <p>The <dfn id=dom-select-nameditem title=dom-select-namedItem><code>namedItem(<var title="">name</var>)</code></dfn>
-  method must return the value returned by the method of the same name on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
+  method must return the value returned by <a href=#dom-htmloptionscollection-nameditem title=dom-HTMLOptionsCollection-namedItem>the method of the same name</a> on the <code title=dom-select-options><a href=#dom-select-options>options</a></code> collection, when invoked with the same argument.</p>
 
   <p>When the user agent is to <dfn id=dom-htmlselectelement-setter title=dom-HTMLSelectElement-setter>set the value of a new
   indexed property</dfn> for a given property index <var title="">index</var> to a new value <var title="">value</var>, it must instead <a href=#dom-htmloptionscollection-setter title=dom-HTMLOptionsCollection-setter>set the value
@@ -81093,7 +81096,6 @@
   <code title=dom-WorkerGlobalScope-location><a href=#dom-workerglobalscope-location></a></code> attribute.</p>
 
 
-
   <h5 id=dedicated-workers-and-the-dedicatedworkerglobalscope-interface><span class=secno>9.2.1.2 </span>Dedicated workers and the <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> interface</h5>
 
   <pre class=idl>interface <dfn id=dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</dfn> : <a href=#workerglobalscope>WorkerGlobalScope</a> {
@@ -81116,15 +81118,19 @@
   <p>All messages received by that port must immediately be retargeted
   at the <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> object.</p>
 
-  <p>The <dfn id=dom-dedicatedworkerglobalscope-postmessage title=dom-DedicatedWorkerGlobalScope-postMessage><code>postMessage()</code></dfn><!--
-  and <dfn
-  title="dom-DedicatedWorkerGlobalScope-startConversation"><code>startConversation()</code></dfn>-->
-  method<!--s (startConversation)--> on
-  <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> objects must act as if, when
-  invoked, it<!--/they (startConversation)--> immediately invoked the
-  method of the same name on the port, with the same arguments, and
-  returned the same return value.</p>
+  <p>The <dfn id=dom-dedicatedworkerglobalscope-postmessage title=dom-DedicatedWorkerGlobalScope-postMessage><code>postMessage()</code></dfn>
+  method on <code><a href=#dedicatedworkerglobalscope>DedicatedWorkerGlobalScope</a></code> objects must act as if, when invoked, it
+  immediately invoked <a href=#dom-messageport-postmessage title=dom-MessagePort-postMessage>the method of the same name</a>
+  on the port, with the same arguments, and returned the same return value.</p>
 
+<!--
+  <p>Similarly, the <dfn
+  title="dom-DedicatedWorkerGlobalScope-startConversation"><code>startConversation()</code></dfn>
+  method on <code>DedicatedWorkerGlobalScope</code> objects must act as if, when invoked, it
+  immediately invoked <span title="dom-MessagePort-startConversation">the method of the same
+  name</span> on the port, with the same arguments, and returned the same return value.</p>
+-->
+
   <p>The following are the <a href=#event-handlers>event handlers</a> (and their
   corresponding <a href=#event-handler-event-type title="event handler event type">event handler
   event types</a>) that must be supported, as IDL attributes, by
@@ -81692,14 +81698,17 @@
   <p>All messages received by that port must immediately be retargeted
   at the <code><a href=#worker>Worker</a></code> object.</p>
 
-  <p>The <dfn id=dom-worker-postmessage title=dom-Worker-postMessage><code>postMessage()</code></dfn><!--
-  and <dfn
-  title="dom-Worker-startConversation"><code>startConversation()</code></dfn>-->
-  method<!--s (startConversation)--> on <code><a href=#worker>Worker</a></code> objects
-  must act as if, when invoked, it<!--/they (startConversation)-->
-  immediately invoked the method of the same name on the port, with
-  the same arguments, and returned the same return value.</p>
+  <p>The <dfn id=dom-worker-postmessage title=dom-Worker-postMessage><code>postMessage()</code></dfn> method on
+  <code><a href=#worker>Worker</a></code> objects must act as if, when invoked, it immediately invoked <a href=#dom-messageport-postmessage title=dom-MessagePort-postMessage>the method of the same name</a> on the port, with the same
+  arguments, and returned the same return value.</p>
 
+<!--
+  <p>Similarly, the <dfn title="dom-Worker-startConversation"><code>startConversation()</code></dfn>
+  method on <code>Worker</code> objects must act as if, when invoked, it immediately invoked <span
+  title="dom-MessagePort-startConversation">the method of the same name</span> on the port, with the
+  same arguments, and returned the same return value.</p>
+-->
+
   <div class=example>
 
    <p>The <code title=dom-Worker-postMessage><a href=#dom-worker-postmessage>postMessage()</a></code>

Modified: source
===================================================================
--- source	2013-02-04 20:57:56 UTC (rev 7691)
+++ source	2013-02-05 00:14:52 UTC (rev 7692)
@@ -2904,7 +2904,9 @@
      <li><dfn><code>ProcessingInstruction</code></dfn> interface</li>
      <li><dfn><code>Text</code></dfn> interface</li>
 
-     <li><dfn><code>HTMLCollection</code></dfn> interface, and the terms <dfn>collections</dfn> and <dfn>represented by the collection</dfn></li>
+     <li><dfn><code>HTMLCollection</code></dfn> interface</li>
+     <li><dfn title="dom-HTMLCollection-item"><code>item()</code> method</dfn>
+     <li>The terms <dfn>collections</dfn> and <dfn>represented by the collection</dfn></li>
 
      <li><dfn><code>DOMTokenList</code></dfn> interface</li>
      <li><dfn><code>DOMSettableTokenList</code></dfn> interface</li>
@@ -60814,12 +60816,13 @@
   title="dom-select-options">options</code> collection. On setting, it must act like the attribute
   of the same name on the <code title="dom-select-options">options</code> collection.</p>
 
+<!--CLEANUP-->
   <p>The <dfn title="dom-select-item"><code>item(<var title="">index</var>)</code></dfn> method must
-  return the value returned by the method of the same name on the <code
+  return the value returned by <span title="dom-HTMLCollection-item">the method of the same name</span> on the <code
   title="dom-select-options">options</code> collection, when invoked with the same argument.</p>
 
   <p>The <dfn title="dom-select-namedItem"><code>namedItem(<var title="">name</var>)</code></dfn>
-  method must return the value returned by the method of the same name on the <code
+  method must return the value returned by <span title="dom-HTMLOptionsCollection-namedItem">the method of the same name</span> on the <code
   title="dom-select-options">options</code> collection, when invoked with the same argument.</p>
 
   <p>When the user agent is to <dfn title="dom-HTMLSelectElement-setter">set the value of a new
@@ -94067,7 +94070,6 @@
   <code title="dom-WorkerGlobalScope-location"></code> attribute.</p>
 
 
-
   <h5>Dedicated workers and the <code>DedicatedWorkerGlobalScope</code> interface</h5>
 
   <pre class="idl">interface <dfn>DedicatedWorkerGlobalScope</dfn> : <span>WorkerGlobalScope</span> {
@@ -94090,16 +94092,19 @@
   <p>All messages received by that port must immediately be retargeted
   at the <code>DedicatedWorkerGlobalScope</code> object.</p>
 
-  <p>The <dfn
-  title="dom-DedicatedWorkerGlobalScope-postMessage"><code>postMessage()</code></dfn><!--
-  and <dfn
-  title="dom-DedicatedWorkerGlobalScope-startConversation"><code>startConversation()</code></dfn>-->
-  method<!--s (startConversation)--> on
-  <code>DedicatedWorkerGlobalScope</code> objects must act as if, when
-  invoked, it<!--/they (startConversation)--> immediately invoked the
-  method of the same name on the port, with the same arguments, and
-  returned the same return value.</p>
+  <p>The <dfn title="dom-DedicatedWorkerGlobalScope-postMessage"><code>postMessage()</code></dfn>
+  method on <code>DedicatedWorkerGlobalScope</code> objects must act as if, when invoked, it
+  immediately invoked <span title="dom-MessagePort-postMessage">the method of the same name</span>
+  on the port, with the same arguments, and returned the same return value.</p>
 
+<!--
+  <p>Similarly, the <dfn
+  title="dom-DedicatedWorkerGlobalScope-startConversation"><code>startConversation()</code></dfn>
+  method on <code>DedicatedWorkerGlobalScope</code> objects must act as if, when invoked, it
+  immediately invoked <span title="dom-MessagePort-startConversation">the method of the same
+  name</span> on the port, with the same arguments, and returned the same return value.</p>
+-->
+
   <p>The following are the <span>event handlers</span> (and their
   corresponding <span title="event handler event type">event handler
   event types</span>) that must be supported, as IDL attributes, by
@@ -94765,15 +94770,18 @@
   <p>All messages received by that port must immediately be retargeted
   at the <code>Worker</code> object.</p>
 
-  <p>The <dfn
-  title="dom-Worker-postMessage"><code>postMessage()</code></dfn><!--
-  and <dfn
-  title="dom-Worker-startConversation"><code>startConversation()</code></dfn>-->
-  method<!--s (startConversation)--> on <code>Worker</code> objects
-  must act as if, when invoked, it<!--/they (startConversation)-->
-  immediately invoked the method of the same name on the port, with
-  the same arguments, and returned the same return value.</p>
+  <p>The <dfn title="dom-Worker-postMessage"><code>postMessage()</code></dfn> method on
+  <code>Worker</code> objects must act as if, when invoked, it immediately invoked <span
+  title="dom-MessagePort-postMessage">the method of the same name</span> on the port, with the same
+  arguments, and returned the same return value.</p>
 
+<!--
+  <p>Similarly, the <dfn title="dom-Worker-startConversation"><code>startConversation()</code></dfn>
+  method on <code>Worker</code> objects must act as if, when invoked, it immediately invoked <span
+  title="dom-MessagePort-startConversation">the method of the same name</span> on the port, with the
+  same arguments, and returned the same return value.</p>
+-->
+
   <div class="example">
 
    <p>The <code title="dom-Worker-postMessage">postMessage()</code>




More information about the Commit-Watchers mailing list