hixie: Make 'Referer' work correctly for scripts in shared workers. (For some definition of 'correctly' -- it uses the URL of the document that actually created the script. Arguably it should use the URL of the script itself. However, this doesn't change that, it just makes it not leak the URL of documents that that document's browsing context is navigated to.) (whatwg r4789)

hixie: Make 'Referer' work correctly for scripts in shared workers. (For
some definition of 'correctly' -- it uses the URL of the document that
actually created the script. Arguably it should use the URL of the
script itself. However, this doesn't change that, it just makes it not
leak the URL of documents that that document's browsing context is
navigated to.) (whatwg r4789)

http://dev.w3.org/cvsweb/html5/postmsg/Overview.html?r1=1.15&r2=1.16&f=h
http://html5.org/tools/web-apps-tracker?from=4788&to=4789

===================================================================
RCS file: /sources/public/html5/postmsg/Overview.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Overview.html 22 Feb 2010 23:03:30 -0000 1.15
+++ Overview.html 23 Feb 2010 01:53:18 -0000 1.16
@@ -283,7 +283,7 @@
    <h1>HTML5 Web Messaging</h1>
    <h2 class="no-num no-toc" id="generatedID"></h2>
 
-   <h2 class="no-num no-toc" id="editor-s-draft-22-february-2010">Editor's Draft 22 February 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-23-february-2010">Editor's Draft 23 February 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/postmsg/">http://www.w3.org/TR/postmsg/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -377,7 +377,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 22 February 2010 Editor's Draft.
+  This specification is the 23 February 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a
   larger specification</a> being produced by the <a href="http://www.whatwg.org/">WHATWG</a>, which is available under a
   license that permits reuse of the specification text.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><!-- (this text is from the RDFa+HTML spec --><p>This specification is an extension to the HTML5 language. All
@@ -649,9 +649,8 @@
     literal U+002F SOLIDUS character (/), and the
     <code>Document</code> of the <code>Window</code> object on which
     the method was invoked does not have the <span>same origin</span>
-    as the <span>entry script</span>'s <span title="script's browsing
-    context">browsing context</span>'s <span>active document</span>,
-    then abort these steps silently.</p>
+    as the <span>entry script</span>'s <span title="script's
+    document">document</span>, then abort these steps silently.</p>
 
     <p>Otherwise, if the <var title="">targetOrigin</var> argument is
     an <span>absolute URL</span>, and the <code>Document</code> of the
@@ -763,9 +762,8 @@
     literal U+002F SOLIDUS character (/), and the
     <code>Document</code> of the <code>Window</code> object on which
     the method was invoked does not have the <span>same origin</span>
-    as the <span>entry script</span>'s <span title="script's browsing
-    context">browsing context</span>'s <span>active document</span>,
-    then abort these steps silently.</p>
+    as the <span>entry script</span>'s <span title="script's
+    document">document</span>, then abort these steps silently.</p>
 
     <p>Otherwise, if the <var title="">targetOrigin</var> argument is
     an <span>absolute URL</span>, and the <code>Document</code> of the

Received on Tuesday, 23 February 2010 01:54:10 UTC