[html5] r6700 - [e] (0) xref Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=14208

whatwg at whatwg.org whatwg at whatwg.org
Wed Oct 19 15:01:46 PDT 2011


Author: ianh
Date: 2011-10-19 15:01:45 -0700 (Wed, 19 Oct 2011)
New Revision: 6700

Modified:
   complete.html
   index
   source
Log:
[e] (0) xref
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=14208

Modified: complete.html
===================================================================
--- complete.html	2011-10-19 21:56:56 UTC (rev 6699)
+++ complete.html	2011-10-19 22:01:45 UTC (rev 6700)
@@ -3811,6 +3811,7 @@
 
      <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=domstringlist><code>DOMStringList</code></dfn> interface</li>
      <li><dfn id=domtokenlist><code>DOMTokenList</code></dfn> interface</li>
      <li><dfn id=domsettabletokenlist><code>DOMSettableTokenList</code></dfn> interface</li>
 
@@ -8689,7 +8690,7 @@
   <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()
-  readonly attribute <span>DOMStringList</span> <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
+  readonly attribute <a href=#domstringlist>DOMStringList</a> <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
 };
 
 typedef sequence<any> <dfn id=propertyvaluearray>PropertyValueArray</dfn>;
@@ -8723,7 +8724,7 @@
 
    <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>
+    <p>Returns a <code><a href=#domstringlist>DOMStringList</a></code> with the <a href=#property-names>property names</a> of the elements in the collection.</p>
    </dd>
 
    <dt><var title="">propertyNodeList</var> . <code title=dom-PropertyNodeList-getVlues>getValues</code>()</dt>
@@ -8741,7 +8742,7 @@
   the collection</a>.</p>
 
   <p>The <dfn id=dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names><code>names</code></dfn>
-  attribute must return a <a href=#live>live</a> <code>DOMStringList</code>
+  attribute must return a <a href=#live>live</a> <code><a href=#domstringlist>DOMStringList</a></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
   order</a>, but with duplicates removed, leaving only the first
@@ -73045,7 +73046,7 @@
   void <a href=#dom-datatransfer-addelement title=dom-DataTransfer-addElement>addElement</a>(Element element);
 
   /* old interface */
-  readonly attribute DOMStringList <a href=#dom-datatransfer-types title=dom-DataTransfer-types>types</a>;
+  readonly attribute <a href=#domstringlist>DOMStringList</a> <a href=#dom-datatransfer-types title=dom-DataTransfer-types>types</a>;
   DOMString <a href=#dom-datatransfer-getdata title=dom-DataTransfer-getData>getData</a>(DOMString format);
   void <a href=#dom-datatransfer-setdata title=dom-DataTransfer-setData>setData</a>(DOMString format, DOMString data);
   void <a href=#dom-datatransfer-cleardata title=dom-DataTransfer-clearData>clearData</a>(optional DOMString format);
@@ -73112,7 +73113,7 @@
 
    <dd>
 
-    <p>Returns a <code>DOMStringList</code> listing the formats that
+    <p>Returns a <code><a href=#domstringlist>DOMStringList</a></code> listing the formats that
     were set in the <code title=event-dragstart><a href=#event-dragstart>dragstart</a></code>
     event. In addition, if any files are being dragged, then one of
     the types will be the string "<code title="">Files</code>".</p>
@@ -73234,7 +73235,7 @@
   image at the time the method is invoked.</p>
 
   <p>The <dfn id=dom-datatransfer-types title=dom-DataTransfer-types><code>types</code></dfn>
-  attribute must return a <a href=#live>live</a> <code>DOMStringList</code>
+  attribute must return a <a href=#live>live</a> <code><a href=#domstringlist>DOMStringList</a></code>
   giving the strings that the following steps would produce. The same
   object must be returned each time.</p>
 
@@ -73242,7 +73243,7 @@
 
    <li><p>If the <code><a href=#datatransfer>DataTransfer</a></code> object is no longer
    associated with a <a href=#drag-data-store>drag data store</a>, the
-   <code>DOMStringList</code> is empty. Abort these steps; return the
+   <code><a href=#domstringlist>DOMStringList</a></code> is empty. Abort these steps; return the
    empty list <var title="">L</var>.</li>
 
    <li><p>For each item in the <a href=#drag-data-store-item-list>drag data store item list</a>

Modified: index
===================================================================
--- index	2011-10-19 21:56:56 UTC (rev 6699)
+++ index	2011-10-19 22:01:45 UTC (rev 6700)
@@ -3811,6 +3811,7 @@
 
      <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=domstringlist><code>DOMStringList</code></dfn> interface</li>
      <li><dfn id=domtokenlist><code>DOMTokenList</code></dfn> interface</li>
      <li><dfn id=domsettabletokenlist><code>DOMSettableTokenList</code></dfn> interface</li>
 
@@ -8689,7 +8690,7 @@
   <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()
-  readonly attribute <span>DOMStringList</span> <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
+  readonly attribute <a href=#domstringlist>DOMStringList</a> <a href=#dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names>names</a>;
 };
 
 typedef sequence<any> <dfn id=propertyvaluearray>PropertyValueArray</dfn>;
@@ -8723,7 +8724,7 @@
 
    <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>
+    <p>Returns a <code><a href=#domstringlist>DOMStringList</a></code> with the <a href=#property-names>property names</a> of the elements in the collection.</p>
    </dd>
 
    <dt><var title="">propertyNodeList</var> . <code title=dom-PropertyNodeList-getVlues>getValues</code>()</dt>
@@ -8741,7 +8742,7 @@
   the collection</a>.</p>
 
   <p>The <dfn id=dom-htmlpropertiescollection-names title=dom-HTMLPropertiesCollection-names><code>names</code></dfn>
-  attribute must return a <a href=#live>live</a> <code>DOMStringList</code>
+  attribute must return a <a href=#live>live</a> <code><a href=#domstringlist>DOMStringList</a></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
   order</a>, but with duplicates removed, leaving only the first
@@ -73045,7 +73046,7 @@
   void <a href=#dom-datatransfer-addelement title=dom-DataTransfer-addElement>addElement</a>(Element element);
 
   /* old interface */
-  readonly attribute DOMStringList <a href=#dom-datatransfer-types title=dom-DataTransfer-types>types</a>;
+  readonly attribute <a href=#domstringlist>DOMStringList</a> <a href=#dom-datatransfer-types title=dom-DataTransfer-types>types</a>;
   DOMString <a href=#dom-datatransfer-getdata title=dom-DataTransfer-getData>getData</a>(DOMString format);
   void <a href=#dom-datatransfer-setdata title=dom-DataTransfer-setData>setData</a>(DOMString format, DOMString data);
   void <a href=#dom-datatransfer-cleardata title=dom-DataTransfer-clearData>clearData</a>(optional DOMString format);
@@ -73112,7 +73113,7 @@
 
    <dd>
 
-    <p>Returns a <code>DOMStringList</code> listing the formats that
+    <p>Returns a <code><a href=#domstringlist>DOMStringList</a></code> listing the formats that
     were set in the <code title=event-dragstart><a href=#event-dragstart>dragstart</a></code>
     event. In addition, if any files are being dragged, then one of
     the types will be the string "<code title="">Files</code>".</p>
@@ -73234,7 +73235,7 @@
   image at the time the method is invoked.</p>
 
   <p>The <dfn id=dom-datatransfer-types title=dom-DataTransfer-types><code>types</code></dfn>
-  attribute must return a <a href=#live>live</a> <code>DOMStringList</code>
+  attribute must return a <a href=#live>live</a> <code><a href=#domstringlist>DOMStringList</a></code>
   giving the strings that the following steps would produce. The same
   object must be returned each time.</p>
 
@@ -73242,7 +73243,7 @@
 
    <li><p>If the <code><a href=#datatransfer>DataTransfer</a></code> object is no longer
    associated with a <a href=#drag-data-store>drag data store</a>, the
-   <code>DOMStringList</code> is empty. Abort these steps; return the
+   <code><a href=#domstringlist>DOMStringList</a></code> is empty. Abort these steps; return the
    empty list <var title="">L</var>.</li>
 
    <li><p>For each item in the <a href=#drag-data-store-item-list>drag data store item list</a>

Modified: source
===================================================================
--- source	2011-10-19 21:56:56 UTC (rev 6699)
+++ source	2011-10-19 22:01:45 UTC (rev 6700)
@@ -2728,6 +2728,7 @@
 
      <li><dfn><code>HTMLCollection</code></dfn> interface, and the terms <dfn>collections</dfn> and <dfn>represented by the collection</dfn></li>
 
+     <li><dfn><code>DOMStringList</code></dfn> interface</li>
      <li><dfn><code>DOMTokenList</code></dfn> interface</li>
      <li><dfn><code>DOMSettableTokenList</code></dfn> interface</li>
 
@@ -83162,7 +83163,7 @@
   void <span title="dom-DataTransfer-addElement">addElement</span>(Element element);
 
   /* old interface */
-  readonly attribute DOMStringList <span title="dom-DataTransfer-types">types</span>;
+  readonly attribute <span>DOMStringList</span> <span title="dom-DataTransfer-types">types</span>;
   DOMString <span title="dom-DataTransfer-getData">getData</span>(DOMString format);
   void <span title="dom-DataTransfer-setData">setData</span>(DOMString format, DOMString data);
   void <span title="dom-DataTransfer-clearData">clearData</span>(optional DOMString format);




More information about the Commit-Watchers mailing list