CVS html5/workers

Update of /sources/public/html5/workers
In directory roscoe:/tmp/cvs-serv19986

Modified Files:
	Overview.html 
Log Message:
Update integration with URL spec. (whatwg r7795)

--- /sources/public/html5/workers/Overview.html	2013/04/01 18:58:58	1.371
+++ /sources/public/html5/workers/Overview.html	2013/04/09 18:18:39	1.372
@@ -216,7 +216,7 @@
 
    <h1>Web Workers</h1>
    
-   <h2 class="no-num no-toc" id="editor-s-draft-1-april-2013">Editor's Draft 1 April 2013</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-9-april-2013">Editor's Draft 9 April 2013</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/workers/">http://www.w3.org/TR/workers/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -353,7 +353,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 1 April 2013 Editor's Draft.
+  This specification is the 9 April 2013 Editor's Draft.
   </p>
 
   
@@ -2303,21 +2303,21 @@
 
   <h3 id="worker-locations"><span class="secno">5.4 </span>Worker locations</h3>
 
-  <pre class="idl">interface <dfn id="workerlocation">WorkerLocation</dfn> {
-  stringifier readonly attribute DOMString <a href="#dom-workerlocation-href" title="dom-WorkerLocation-href">href</a>;
-};
+  <pre class="idl">interface <dfn id="workerlocation">WorkerLocation</dfn> { };
 <a href="#workerlocation">WorkerLocation</a> implements <span>URLUtilsReadOnly</span>;</pre>
 
   <p>A <code><a href="#workerlocation">WorkerLocation</a></code> object represents an <span>absolute URL</span> set at its
   creation.</p>
 
-  <p>The <dfn id="dom-workerlocation-href" title="dom-WorkerLocation-href"><code>href</code></dfn> attribute must return the
-  <span>absolute URL</span> that the object represents.</p>
+  <p>The <code><a href="#workerlocation">WorkerLocation</a></code> interface supports the <code>URLUtilsReadOnly</code>
+  interface. <a href="#refsURL">[URL]</a></p>
+
+  <p>When the object is created, the user agent must invoke the element's
+  <code>URLUtilsReadOnly</code> interface's <span title="concept-uu-set-the-input">set the
+  input</span> algorithm with the <span>absolute URL</span> that the <code><a href="#workerlocation">WorkerLocation</a></code>
+  object represents as the given value.</p>
 
-  <p>The <code><a href="#workerlocation">WorkerLocation</a></code> interface also supports the <code>URLUtilsReadOnly</code>
-  interface. The <span title="concept-uu-input">input</span> is the <span>absolute URL</span> that
-  the object represents (same as the <code title="dom-WorkerLocation-href"><a href="#dom-workerlocation-href">href</a></code>
-  attribute). <a href="#refsURL">[URL]</a></p>
+  <p>The element's <code>URLUtilsReadOnly</code> interface's <span title="concept-uu-get-the-base">get the base</span> algorithm must return null.</p>
 
   <p>The <code><a href="#workerlocation">WorkerLocation</a></code> interface must only be <span title="expose">exposed</span> if
   the <span>JavaScript global environment</span> is a <span>worker environment</span>.</p>

Received on Tuesday, 9 April 2013 19:17:42 UTC