html5/spec fetching-resources.html,1.11,1.12 spec.html,1.1164,1.1165

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv6403

Modified Files:
	fetching-resources.html spec.html 
Log Message:
Allow XHR a way to block cookies. (whatwg r5330)

[updated by splitter]


Index: fetching-resources.html
===================================================================
RCS file: /sources/public/html5/spec/fetching-resources.html,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- fetching-resources.html	16 Aug 2010 21:56:52 -0000	1.11
+++ fetching-resources.html	24 Aug 2010 18:56:40 -0000	1.12
@@ -331,9 +331,9 @@
   <p>When a user agent is to <dfn id="fetch">fetch</dfn> a resource or
   <a href="urls.html#url">URL</a>, optionally from an origin <i title="">origin</i>,
   and optionally with a <i>synchronous flag</i>, a <i>manual redirect
-  flag</i>, and/or a <i>force same-origin flag</i>, the following
-  steps must be run. (When a <em>URL</em> is to be fetched, the URL
-  identifies a resource to be obtained.)</p>
+  flag</i>, a <i>force same-origin flag</i>, and/or a <i>block cookies
+  flag</i>, the following steps must be run. (When a <em>URL</em> is
+  to be fetched, the URL identifies a resource to be obtained.)</p>
 
   <!-- if invoked with the synchronous flag, make sure to release the
   storage mutex first -->
@@ -348,6 +348,8 @@
   the same as the /origin/, which must also be present, and the
   algorithm must not be invoked with the manual redirect flag. -->
 
+  <!-- "block cookies" is currently only used by XHR -->
+
   <ol><li>
 
     <p>Generate the <i>address of the resource from which Request-URIs
@@ -423,8 +425,9 @@
 
    <li>
 
-    <p>If there are cookies to be set, then the user agent must run
-    the following substeps:</p>
+    <p>If the algorithm was not invoked with the <i>block cookies
+    flag</i>, and there are cookies to be set, then the user agent
+    must run the following substeps:</p>
 
     <ol><li><p>Wait until ownership of the <a href="webappapis.html#storage-mutex">storage mutex</a> can
      be taken by this instance of the <a href="#fetch" title="fetch">fetching</a> algorithm.</p></li>

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1164
retrieving revision 1.1165
diff -u -d -r1.1164 -r1.1165
--- spec.html	24 Aug 2010 08:36:52 -0000	1.1164
+++ spec.html	24 Aug 2010 18:56:40 -0000	1.1165
@@ -336,7 +336,7 @@
     <a href="Overview.html">single page HTML</a>,
     <a href="spec.html">multipage HTML</a>,
     <a href="author/">author edition</a>.
-This is revision 1.4248.
+This is revision 1.4249.
    </p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2010 <a href="http://www.w3.org/"><abbr title="World Wide

Received on Tuesday, 24 August 2010 18:56:44 UTC