- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 19 Oct 2011 22:05:36 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv8286 Modified Files: Overview.html Log Message: xref (whatwg r6700) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5370 retrieving revision 1.5371 diff -u -d -r1.5370 -r1.5371 --- Overview.html 19 Oct 2011 22:00:43 -0000 1.5370 +++ Overview.html 19 Oct 2011 22:05:31 -0000 1.5371 @@ -3117,6 +3117,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> @@ -53640,7 +53641,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); @@ -53705,7 +53706,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> @@ -53825,7 +53826,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> @@ -53833,7 +53834,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>
Received on Wednesday, 19 October 2011 22:05:46 UTC