- From: poot <cvsmail@w3.org>
- Date: Fri, 17 Jun 2011 05:55:35 -0400
- To: public-html-diffs@w3.org
websocket; hixie: websocket: Make the types of the arguments and attributes for the close frame API bits consistent with each other (whatwg r6159) http://dev.w3.org/cvsweb/html5/websockets/Overview.html?r1=1.217&r2=1.218&f=h http://html5.org/tools/web-apps-tracker?from=6158&to=6159 =================================================================== RCS file: /sources/public/html5/websockets/Overview.html,v retrieving revision 1.217 retrieving revision 1.218 diff -u -d -r1.217 -r1.218 --- Overview.html 31 May 2011 19:58:28 -0000 1.217 +++ Overview.html 31 May 2011 20:02:02 -0000 1.218 @@ -421,7 +421,7 @@ attribute <span>Function</span> <a href="#handler-websocket-onopen" title="handler-WebSocket-onopen">onopen</a>; attribute <span>Function</span> <a href="#handler-websocket-onclose" title="handler-WebSocket-onclose">onclose</a>; readonly attribute DOMString <a href="#dom-websocket-protocol" title="dom-WebSocket-protocol">protocol</a>; - void <a href="#dom-websocket-close" title="dom-WebSocket-close">close</a>(in optional unsigned short code, in optional DOMString reason); + void <a href="#dom-websocket-close" title="dom-WebSocket-close">close</a>(in optional unsigned long code, in optional DOMString reason); // messaging attribute <span>Function</span> <a href="#handler-websocket-onmessage" title="handler-WebSocket-onmessage">onmessage</a>; @@ -841,7 +841,7 @@ readonly attribute boolean <a href="#dom-closeevent-wasclean" title="dom-CloseEvent-wasClean">wasClean</a>; readonly attribute unsigned long <span title="dom-WebSocket-code">code</span>; readonly attribute DOMString <span title="dom-WebSocket-reason">reason</span>; - void <a href="#dom-closeevent-initcloseevent" title="dom-CloseEvent-initCloseEvent">initCloseEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in boolean wasCleanArg, in unsigned long codeArg, in unsigned long reasonArg); + void <a href="#dom-closeevent-initcloseevent" title="dom-CloseEvent-initCloseEvent">initCloseEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in boolean wasCleanArg, in unsigned long codeArg, in DOMString reasonArg); };</pre><p>The <dfn id="dom-closeevent-initcloseevent" title="dom-CloseEvent-initCloseEvent"><code>initCloseEvent()</code></dfn> method must initialize the event in a manner analogous to the similarly-named method in the DOM Events interfaces. <a href="#refsDOMEVENTS">[DOMEVENTS]</a><p>The <dfn id="dom-closeevent-wasclean" title="dom-CloseEvent-wasClean"><code>wasClean</code></dfn>
Received on Friday, 17 June 2011 09:55:36 UTC