- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 09 Jun 2009 22:57:06 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv11085 Modified Files: Overview.html Log Message: Note that DOMTokenList exposes the undordered tokens in a defined order. (whatwg r3214) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2364 retrieving revision 1.2365 diff -u -d -r1.2364 -r1.2365 --- Overview.html 9 Jun 2009 01:28:03 -0000 1.2364 +++ Overview.html 9 Jun 2009 22:57:01 -0000 1.2365 @@ -6081,7 +6081,10 @@ </div><h4 id="domtokenlist"><span class="secno">2.9.3 </span>DOMTokenList</h4><p>The <code><a href="#domtokenlist-0">DOMTokenList</a></code> interface represents an interface to an underlying string that consists of an <a href="#unordered-set-of-unique-space-separated-tokens">unordered set of - unique space-separated tokens</a>.<pre class="idl">[<a href="#dom-tokenlist-tostring" title="dom-tokenlist-toString">Stringifies</a>] interface <dfn id="domtokenlist-0">DOMTokenList</dfn> { + unique space-separated tokens</a>.<p class="note">While the order of the tokens in the underlying + string is not important, the <code><a href="#domtokenlist-0">DOMTokenList</a></code> interfaces + exposes the tokens in a well-defined order for consistency between + implementations.<pre class="idl">[<a href="#dom-tokenlist-tostring" title="dom-tokenlist-toString">Stringifies</a>] interface <dfn id="domtokenlist-0">DOMTokenList</dfn> { readonly attribute unsigned long <a href="#dom-tokenlist-length" title="dom-tokenlist-length">length</a>; [IndexGetter] DOMString <a href="#dom-tokenlist-item" title="dom-tokenlist-item">item</a>(in unsigned long index); boolean <a href="#dom-tokenlist-has" title="dom-tokenlist-has">has</a>(in DOMString token);
Received on Tuesday, 9 June 2009 22:57:12 UTC