- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 06 Jan 2010 03:36:44 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/workers
In directory hutz:/tmp/cvs-serv6736
Modified Files:
Overview.html
Log Message:
s/first script/entry script/ for sanity. (whatwg r4496)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.215
retrieving revision 1.216
diff -u -d -r1.215 -r1.216
--- Overview.html 5 Jan 2010 08:11:21 -0000 1.215
+++ Overview.html 6 Jan 2010 03:36:42 -0000 1.216
@@ -1502,7 +1502,7 @@
objects implementing the <code><a href="#worker">Worker</a></code> interface:<table><thead><tr><th><span title="event handlers">Event handler</span> <th><span>Event handler event type</span>
<tbody><tr><td><dfn id="handler-worker-onmessage" title="handler-Worker-onmessage"><code>onmessage</code></dfn> <td> <code title="event-message">message</code>
</table><hr><p>When the <dfn id="dom-worker" title="dom-Worker"><code>Worker(<var title="">scriptURL</var>)</code></dfn> constructor is invoked, the
- user agent must run the following steps:<ol><li><p><span title="resolve a url">Resolve</span> the <var title="">scriptURL</var> argument relative to the <span>first
+ user agent must run the following steps:<ol><li><p><span title="resolve a url">Resolve</span> the <var title="">scriptURL</var> argument relative to the <span>entry
script</span>'s <span title="script's base URL">base URL</span>,
when the method is invoked.</li>
@@ -1513,7 +1513,7 @@
<p>If the <span>origin</span> of the resulting <span>absolute
URL</span> is not the <span title="same origin">same</span> as the
- origin of the <span>first script</span>, then throw a
+ origin of the <span>entry script</span>, then throw a
<code>SECURITY_ERR</code> exception.</p>
<p class="note">Thus, scripts must be external files with the same
@@ -1591,7 +1591,7 @@
<p><a href="#run-a-worker">Run a worker</a> for the resulting <span>absolute
URL</span>, with the <span>script's browsing context</span> of the
script that invoked the method as the <var title="">owner browsing
- context</var>, with the <span>origin</span> of the <span>first
+ context</var>, with the <span>origin</span> of the <span>entry
script</span> as the <var title="">owner origin</var>, and with
<var title="">worker global scope</var> as the global scope.</p>
@@ -1623,7 +1623,7 @@
<p>If the <span>origin</span> of <var title="">scriptURL</var> is
not the <span title="same origin">same</span> as the origin of the
- <span>first script</span>, then throw a <code>SECURITY_ERR</code>
+ <span>entry script</span>, then throw a <code>SECURITY_ERR</code>
exception.</p>
<p class="note">Thus, scripts must be external files with the same
@@ -1786,7 +1786,7 @@
<p><a href="#run-a-worker">Run a worker</a> for <var title="">scriptURL</var>,
with the <span>script's browsing context</span> of the script that
invoked the method as the <var title="">owner browsing
- context</var>, with the <span>origin</span> of the <span>first
+ context</var>, with the <span>origin</span> of the <span>entry
script</span> as the <var title="">owner origin</var>, and with
<var title="">worker global scope</var> as the global scope.</p>
@@ -1825,7 +1825,7 @@
<p>Attempt to <span>fetch</span> each resource identified by the
resulting <span title="absolute URL">absolute URLs</span>, from
- the <span>first script</span>'s <span>origin</span>.</p> <!-- not
+ the <span>entry script</span>'s <span>origin</span>.</p> <!-- not
http-origin privacy sensitive -->
</li>
Received on Wednesday, 6 January 2010 03:36:46 UTC