- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 14 Jul 2011 22:46:32 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17025
Modified Files:
browsers.html dom.html fetching-resources.html history.html
spec.html
Log Message:
Make pushState() and replaceState() switch the session history entry to GET. (whatwg r6298)
[updated by splitter]
Index: history.html
===================================================================
RCS file: /sources/public/html5/spec/history.html,v
retrieving revision 1.1053
retrieving revision 1.1054
diff -u -d -r1.1053 -r1.1054
--- history.html 3 Jun 2011 20:47:18 -0000 1.1053
+++ history.html 14 Jul 2011 22:46:29 -0000 1.1054
@@ -685,6 +685,12 @@
</ol></li>
+ <li><p>If the <a href="#current-entry">current entry</a> in the session history
+ represents a non-GET request (e.g. it was the result of a POST
+ submission) then update it to instead represent a GET request
+ (<a href="fetching-resources.html#concept-http-equivalent-get" title="concept-http-equivalent-get">or
+ equivalent</a>).</p></li>
+
<li>
<p>If the third argument is present, set <a href="dom.html#the-document-s-current-address">the document's
Index: fetching-resources.html
===================================================================
RCS file: /sources/public/html5/spec/fetching-resources.html,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- fetching-resources.html 3 Jun 2011 00:48:19 -0000 1.54
+++ fetching-resources.html 14 Jul 2011 22:46:29 -0000 1.55
@@ -721,7 +721,10 @@
</td></tr></tbody></table><p>The empty string is also a valid keyword, and maps to the <a href="#attr-crossorigin-anonymous" title="attr-crossorigin-anonymous">Anonymous</a> state. The
attribute's <i>invalid value default</i> is the <a href="#attr-crossorigin-anonymous" title="attr-crossorigin-anonymous">Anonymous</a> state. The
<i>missing value default</i>, used when the attribute is omitted, is
- the <dfn id="attr-crossorigin-none" title="attr-crossorigin-none">No CORS</dfn> state.</p><h4 id="cors-enabled-fetch"><span class="secno">2.7.6 </span>CORS-enabled fetch</h4><p>When the user agent is required to perform a <dfn id="potentially-cors-enabled-fetch">potentially
+ the <dfn id="attr-crossorigin-none" title="attr-crossorigin-none">No CORS</dfn> state.</p><div class="impl">
+ <h4 id="cors-enabled-fetch"><span class="secno">2.7.6 </span>CORS-enabled fetch</h4>
+
+ <p>When the user agent is required to perform a <dfn id="potentially-cors-enabled-fetch">potentially
CORS-enabled fetch</dfn> of an <a href="urls.html#absolute-url">absolute URL</a> <var title="">URL</var>, with a mode <var title="">mode</var> that is
either "<a href="#attr-crossorigin-none" title="attr-crossorigin-none">No CORS</a>", "<a href="#attr-crossorigin-anonymous" title="attr-crossorigin-anonymous">Anonymous</a>", or "<a href="#attr-crossorigin-use-credentials" title="attr-crossorigin-use-credentials">Use Credentials</a>",
an <a href="origin-0.html#origin">origin</a> <var title="">origin</var>, and a default
@@ -731,7 +734,9 @@
is only used if <var title="">mode</var> is "<a href="#attr-crossorigin-none" title="attr-crossorigin-none">No CORS</a>". This algorithm wraps
the <a href="#fetch">fetch</a> algorithm above, and labels the obtained
resource as either <dfn id="cors-same-origin">CORS-same-origin</dfn> or
- <dfn id="cors-cross-origin">CORS-cross-origin</dfn>, or blocks the resource entirely.</p><dl class="switch"><dt>If <var title="">mode</var> is "<a href="#attr-crossorigin-none" title="attr-crossorigin-none">No CORS</a>"</dt>
+ <dfn id="cors-cross-origin">CORS-cross-origin</dfn>, or blocks the resource entirely.</p>
+
+ <dl class="switch"><dt>If <var title="">mode</var> is "<a href="#attr-crossorigin-none" title="attr-crossorigin-none">No CORS</a>"</dt>
<dd>
@@ -873,4 +878,4 @@
</ol></dd>
- </dl></body></html>
\ No newline at end of file
+ </dl></div></body></html>
\ No newline at end of file
Index: dom.html
===================================================================
RCS file: /sources/public/html5/spec/dom.html,v
retrieving revision 1.1049
retrieving revision 1.1050
diff -u -d -r1.1049 -r1.1050
--- dom.html 24 Jun 2011 00:47:34 -0000 1.1049
+++ dom.html 14 Jul 2011 22:46:29 -0000 1.1050
@@ -490,8 +490,8 @@
<a href="infrastructure.html#document">Document</a> implements <a href="#htmldocument">HTMLDocument</a>;</pre><p>Since the <code><a href="#htmldocument">HTMLDocument</a></code> interface holds methods and
attributes related to a number of disparate features, the members of
this interface are described in various different sections.</p><h4 id="security-document"><span class="secno">3.1.2 </span>Security</h4><p id="security">User agents <span class="impl">must</span> raise a
- <code><a href="common-dom-interfaces.html#security_err">SECURITY_ERR</a></code> exception whenever any of the members of
- an <code><a href="#htmldocument">HTMLDocument</a></code> object are accessed by scripts whose
+ <code><a href="common-dom-interfaces.html#security_err">SECURITY_ERR</a></code> exception whenever any properties of a
+ <code><a href="infrastructure.html#document">Document</a></code> object are accessed by scripts whose
<a href="origin-0.html#effective-script-origin">effective script origin</a> is not the <a href="origin-0.html#same-origin" title="same
origin">same</a> as the <code><a href="infrastructure.html#document">Document</a></code>'s <a href="origin-0.html#effective-script-origin">effective
script origin</a>.</p><h4 id="resource-metadata-management"><span class="secno">3.1.3 </span><dfn>Resource metadata management</dfn></h4><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-URL"><a href="#dom-document-url">URL</a></code></dt>
Index: browsers.html
===================================================================
RCS file: /sources/public/html5/spec/browsers.html,v
retrieving revision 1.1053
retrieving revision 1.1054
diff -u -d -r1.1053 -r1.1054
--- browsers.html 15 Jun 2011 06:46:47 -0000 1.1053
+++ browsers.html 14 Jul 2011 22:46:29 -0000 1.1054
@@ -1092,13 +1092,13 @@
<h4 id="security-window"><span class="secno">5.2.1 </span>Security</h4>
<p id="security-2">User agents must raise a
- <code><a href="common-dom-interfaces.html#security_err">SECURITY_ERR</a></code> exception whenever any of the members of a
+ <code><a href="common-dom-interfaces.html#security_err">SECURITY_ERR</a></code> exception whenever any properties of a
<code><a href="#window">Window</a></code> object are accessed by scripts whose
<a href="origin-0.html#effective-script-origin">effective script origin</a> is not the same as the
<code><a href="#window">Window</a></code> object's <code><a href="infrastructure.html#document">Document</a></code>'s <a href="origin-0.html#effective-script-origin">effective
script origin</a>, with the following exceptions:</p>
- <ul><li>The <code title="dom-location"><a href="history.html#dom-location">location</a></code> object
+ <ul><li>The <code title="dom-location"><a href="history.html#dom-location">location</a></code> attribute
</li><li>The <code title="dom-window-postMessage">postMessage()</code> method
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1557
retrieving revision 1.1558
diff -u -d -r1.1557 -r1.1558
--- spec.html 11 Jul 2011 21:46:35 -0000 1.1557
+++ spec.html 14 Jul 2011 22:46:29 -0000 1.1558
@@ -322,7 +322,7 @@
<h1>HTML5</h1>
<h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
- <h2 class="no-num no-toc" id="editor-s-draft-11-july-2011">Editor's Draft 11 July 2011</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-14-july-2011">Editor's Draft 14 July 2011</h2>
<dl><dt>Latest Published Version:</dt>
<dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -347,7 +347,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.5027.
+This is revision 1.5030.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2011 <a href="http://www.w3.org/"><abbr title="World Wide
@@ -468,7 +468,7 @@
Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation
track.
- This specification is the 11 July 2011 Editor's Draft.
+ This specification is the 14 July 2011 Editor's Draft.
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
Received on Thursday, 14 July 2011 22:46:33 UTC