- From: poot <cvsmail@w3.org>
- Date: Tue, 21 Feb 2012 15:51:20 -0500
- To: public-html-diffs@w3.org
websocket; hixie: Use union types in the IDL blocks where possible. (whatwg r7002) http://dev.w3.org/cvsweb/html5/websockets/Overview.html?r1=1.256&r2=1.257&f=h http://html5.org/tools/web-apps-tracker?from=7001&to=7002 =================================================================== RCS file: /sources/public/html5/websockets/Overview.html,v retrieving revision 1.256 retrieving revision 1.257 diff -u -d -r1.256 -r1.257 --- Overview.html 8 Feb 2012 23:18:55 -0000 1.256 +++ Overview.html 21 Feb 2012 20:51:05 -0000 1.257 @@ -215,7 +215,7 @@ <h1>The WebSocket API</h1> - <h2 class="no-num no-toc" id="editor-s-draft-8-february-2012">Editor's Draft 8 February 2012</h2> + <h2 class="no-num no-toc" id="editor-s-draft-21-february-2012">Editor's Draft 21 February 2012</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/websockets/">http://www.w3.org/TR/websockets/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -320,7 +320,7 @@ </dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 8 February 2012 Editor's Draft. + This specification is the 21 February 2012 Editor's Draft. <p>This specification is being developed in conjunction with an RFC for a wire protocol, the WebSocket Protocol, available from the following location:<ul><li>RFC 6455: The WebSocket Protocol: <a href="http://tools.ietf.org/html/rfc6455">http://tools.ietf.org/html/rfc6455</a></li> @@ -414,8 +414,7 @@ <code>Node</code> objects as defined in the DOM Core specifications. <a href="#refsDOMCORE">[DOMCORE]</a><p>An IDL attribute is said to be <em>getting</em> when its value is being retrieved (e.g. by author script), and is said to be - <em>setting</em> when a new value is assigned to it.<h2 id="the-websocket-interface"><span class="secno">4 </span>The <code><a href="#websocket">WebSocket</a></code> interface</h2><pre class="idl">[<a href="#dom-websocket" title="dom-WebSocket">Constructor</a>(DOMString url, optional DOMString protocols), - <a href="#dom-websocket" title="dom-WebSocket">Constructor</a>(DOMString url, optional DOMString[] protocols)] + <em>setting</em> when a new value is assigned to it.<h2 id="the-websocket-interface"><span class="secno">4 </span>The <code><a href="#websocket">WebSocket</a></code> interface</h2><pre class="idl">[<a href="#dom-websocket" title="dom-WebSocket">Constructor</a>(DOMString url, optional (DOMString or DOMString[]) protocols)] interface <dfn id="websocket">WebSocket</dfn> : <span>EventTarget</span> { readonly attribute DOMString <a href="#dom-websocket-url" title="dom-WebSocket-url">url</a>;
Received on Tuesday, 21 February 2012 20:51:25 UTC