- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 19 Sep 2009 21:08:45 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/websockets In directory hutz:/tmp/cvs-serv3708 Modified Files: Overview.html Log Message: Move 'implements' requirements to IDL. (whatwg r3910) Index: Overview.html =================================================================== RCS file: /sources/public/html5/websockets/Overview.html,v retrieving revision 1.114 retrieving revision 1.115 diff -u -d -r1.114 -r1.115 --- Overview.html 18 Sep 2009 08:54:56 -0000 1.114 +++ Overview.html 19 Sep 2009 21:08:43 -0000 1.115 @@ -169,7 +169,7 @@ <h1>The Web Sockets API</h1> <!--ZZZ:--> <!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>--> - <h2 class="no-num no-toc" id="editor-s-draft-18-september-2009">Editor's Draft 18 September 2009</h2> + <h2 class="no-num no-toc" id="editor-s-draft-19-september-2009">Editor's Draft 19 September 2009</h2> <!--:ZZZ--> <dl><!-- ZZZ: update the month/day (twice), (un)comment out <dt>This Version:</dt> @@ -238,7 +238,7 @@ specification's progress along the W3C Recommendation track. <!--ZZZ:--> <!--This specification is the 23 April 2009 Working Draft.--> - This specification is the 18 September 2009 Editor's Draft. + This specification is the 19 September 2009 Editor's Draft. <!--:ZZZ--> <p>This specification is being developed in conjunction with an Internet Draft for a wire protocol, the Web Socket Protocol, @@ -333,10 +333,8 @@ attribute <span>Function</span> <a href="#handler-websocket-onclose" title="handler-WebSocket-onclose">onclose</a>; boolean <a href="#dom-websocket-send" title="dom-WebSocket-send">send</a>(in DOMString data); void <a href="#dom-websocket-close" title="dom-WebSocket-close">close</a>(); -};</pre><p><code><a href="#websocket">WebSocket</a></code> objects must also implement the - <code>EventTarget</code> interface. <a href="#refsDOMEVENTS">[DOMEVENTS]</a> - - <p>The <dfn id="dom-websocket" title="dom-WebSocket"><code>WebSocket(<var title="">url</var>, <var title="">protocol</var>)</code></dfn> +}; +<a href="#websocket">WebSocket</a> implements <span>EventTarget</span>;</pre><p>The <dfn id="dom-websocket" title="dom-WebSocket"><code>WebSocket(<var title="">url</var>, <var title="">protocol</var>)</code></dfn> constructor takes one or two arguments. The first argument, <var title="">url</var>, specifies the <span>URL</span> to which to connect. The second, <var title="">protocol</var>, if present, specifies a sub-protocol that the server must support for the @@ -466,18 +464,6 @@ DOM Core</a></cite>, S. Pieters. W3C, June 2009.</dd> --> - <dt id="refsDOMEVENTS">[DOMEVENTS]</dt> - <!-- - <dd><cite><a - href="http://www.w3.org/TR/DOM-Level-3-Events/">Document Object - Model (DOM) Level 3 Events Specification</a></cite>, - B. Höhrmann, P. Le Hegaret, T. Pixley. W3C, December - 2007.</dd> - --> - <dd><cite><a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html">Document - Object Model (DOM) Level 3 Events Specification</a></cite>, - D. Schepers. W3C, July 2009.</dd> - <dt id="refsHTML5">[HTML5]</dt> <!-- <dd><cite><a href="http://www.w3.org/TR/html5/">HTML5</a></cite>,
Received on Saturday, 19 September 2009 21:08:54 UTC