CVS html5/websockets

Update of /sources/public/html5/websockets
In directory roscoe:/tmp/cvs-serv21738

Modified Files:
	Overview.html 
Log Message:
Make WebSocket binary data ArrayBuffers mutable, for consistency with XHR. (whatwg r8455)

--- /sources/public/html5/websockets/Overview.html	2014/02/03 23:16:15	1.309
+++ /sources/public/html5/websockets/Overview.html	2014/02/03 23:17:21	1.310
@@ -941,7 +941,7 @@
     initialize <var title="">event</var>'s <code title="dom-MessageEvent-data">data</code> attribute
     to a new <code>Blob</code> object that represents <var title="">data</var> as its raw data. <a href="#refsFILEAPI">[FILEAPI]</a></p>
 
-    <p>If <var title="">type</var> indicates that the data is Binary, and <code title="dom-WebSocket-binaryType"><a href="#dom-websocket-binarytype">binaryType</a></code> is set to "<code title="">arraybuffer</code>", then initialize <var title="">event</var>'s <code title="dom-MessageEvent-data">data</code> attribute to a new read-only <code>ArrayBuffer</code> <!-- XXXX -->
+    <p>If <var title="">type</var> indicates that the data is Binary, and <code title="dom-WebSocket-binaryType"><a href="#dom-websocket-binarytype">binaryType</a></code> is set to "<code title="">arraybuffer</code>", then initialize <var title="">event</var>'s <code title="dom-MessageEvent-data">data</code> attribute to a new <code>ArrayBuffer</code>
     object whose contents are <var title="">data</var>. <a href="#refsECMA262">[ECMA262]</a></p>
 
    </li>

Received on Monday, 3 February 2014 23:17:22 UTC