CVS html5/websockets

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

Modified Files:
	Overview.html 
Log Message:
Update the spec to say what's exposed to workers: take 1 (whatwg r8425)

--- /sources/public/html5/websockets/Overview.html	2014/01/17 08:12:35	1.307
+++ /sources/public/html5/websockets/Overview.html	2014/01/27 23:09:00	1.308
@@ -216,7 +216,7 @@
 
    <h1>The WebSocket API</h1>
    
-   <h2 class="no-num no-toc" id="editor-s-draft-17-january-2014">Editor's Draft 17 January 2014</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-27-january-2014">Editor's Draft 27 January 2014</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>
@@ -350,7 +350,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 17 January 2014 Editor's Draft.
+  This specification is the 27 January 2014 Editor's Draft.
   </p>
 
 
@@ -502,7 +502,7 @@
   <h2 id="the-websocket-interface"><span class="secno">4 </span>The <code><a href="#websocket">WebSocket</a></code> interface</h2>
 
   <pre class="idl">enum <dfn id="binarytype">BinaryType</dfn> { "<span title="dom-BinaryType-blob">blob</span>", "<span title="dom-BinaryType-arraybuffer">arraybuffer</span>" };
-[<a href="#dom-websocket" title="dom-WebSocket">Constructor</a>(DOMString url, optional (DOMString or DOMString[]) protocols)]
+[<a href="#dom-websocket" title="dom-WebSocket">Constructor</a>(DOMString url, optional (DOMString or DOMString[]) protocols), Exposed=Window,Worker]
 interface <dfn id="websocket">WebSocket</dfn> : <span>EventTarget</span> {
   readonly attribute DOMString <a href="#dom-websocket-url" title="dom-WebSocket-url">url</a>;
 
@@ -1102,7 +1102,7 @@
 
   </ol><h2 id="the-closeevent-interfaces"><span class="secno">8 </span>The <code><a href="#closeevent">CloseEvent</a></code> interfaces</h2>
 
-  <pre class="idl">[Constructor(DOMString type, optional <a href="#closeeventinit">CloseEventInit</a> eventInitDict)]
+  <pre class="idl">[Constructor(DOMString type, optional <a href="#closeeventinit">CloseEventInit</a> eventInitDict), Exposed=Window,Worker]
 interface <dfn id="closeevent">CloseEvent</dfn> : <span>Event</span> {
   readonly attribute boolean <a href="#dom-closeevent-wasclean" title="dom-CloseEvent-wasClean">wasClean</a>;
   readonly attribute unsigned short <a href="#dom-closeevent-code" title="dom-CloseEvent-code">code</a>;

Received on Monday, 27 January 2014 23:09:02 UTC