Skip to content

Commit

Permalink
[] (0) Clarify behaviour in the face of redirects.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3224 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 12, 2009
1 parent 4d476dc commit fc886a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion index
Expand Up @@ -39,7 +39,7 @@
<div class=head>
<p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<h1>HTML 5</h1>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 11 June 2009</h2>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 12 June 2009</h2>
<p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<dl><dt>Multiple-page version:</dt>
Expand Down
17 changes: 10 additions & 7 deletions source
Expand Up @@ -67856,7 +67856,7 @@ XXX Once we resolve the style="" issue, address these:
attribute must return the <code>WorkerLocation</code> object created
for the <code>WorkerGlobalScope</code> object when the worker was
created. It represents the <span>absolute URL</span> of the script
that was used to initialize the worker.</p>
that was used to initialize the worker, after any redirects.</p>

<hr>

Expand Down Expand Up @@ -68238,12 +68238,15 @@ XXX Once we resolve the style="" issue, address these:
<p>Attempt to <span>fetch</span> the resource identified by <var
title="">url</var>.</p>

<p>If the attempt fails, then for each <code>Worker</code> or
<code>SharedWorker</code> object associated with <var
title="">worker global scope</var>, <span>queue a task</span> to
<span>fire a simple event</span> called <code
title="event-error">error</code> at that object. Abort these
steps.</p>
<p>If the attempt fails, or if the attempt involves any redirects
to URIs that do not have the <span>same origin</span> as <var
title="">url</var> (even if the final URI is at the <span>same
origin</span> as the original <var title="">url</var>), then for
each <code>Worker</code> or <code>SharedWorker</code> object
associated with <var title="">worker global scope</var>,
<span>queue a task</span> to <span>fire a simple event</span>
called <code title="event-error">error</code> at that
object. Abort these steps.</p>

<p>If the attempt succeeds, then <span title="decode a script
resource">decode the script resource</span> to obtain its <var
Expand Down

0 comments on commit fc886a7

Please sign in to comment.