html5/websockets Overview.html,1.130,1.131

Update of /sources/public/html5/websockets
In directory hutz:/tmp/cvs-serv19263

Modified Files:
	Overview.html 
Log Message:
Make sure WebSocket.URL returns a resolved URL. (whatwg r4402)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/websockets/Overview.html,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -d -r1.130 -r1.131
--- Overview.html	4 Dec 2009 00:28:43 -0000	1.130
+++ Overview.html	4 Dec 2009 01:55:31 -0000	1.131
@@ -391,8 +391,10 @@
   </ol><p>This constructor must be visible when the <span>script's global
   object</span> is either a <code>Window</code> object or an object
   implementing the <code>WorkerUtils</code> interface.<hr><p>The <dfn id="dom-websocket-url" title="dom-WebSocket-URL"><code>URL</code></dfn>
-  attribute must return the value that was passed to the
-  constructor.<p>The <dfn id="dom-websocket-readystate" title="dom-WebSocket-readyState"><code>readyState</code></dfn>
+  attribute must return the result of <span title="resolve a
+  url">resolving</span> the <span>URL</span> that was passed to the
+  constructor. (It doesn't matter what it is resolved relative to,
+  since we already know it is an <span>absolute URL</span>.)<p>The <dfn id="dom-websocket-readystate" title="dom-WebSocket-readyState"><code>readyState</code></dfn>
   attribute represents the state of the connection. It can have the
   following values:<dl><dt><dfn id="dom-websocket-connecting" title="dom-WebSocket-CONNECTING"><code>CONNECTING</code></dfn> (numeric value 0)</dt>
 

Received on Friday, 4 December 2009 01:55:42 UTC