- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 01 Jul 2008 23:32:24 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/pubnotes In directory hutz:/tmp/cvs-serv19029 Modified Files: Overview.html Overview.src.html Log Message: 1.1028 Allow the origin to include extra data, such as the host's certificate. (credit: el) (whatwg r1839) Index: Overview.html =================================================================== RCS file: /sources/public/html5/pubnotes/Overview.html,v retrieving revision 1.284 retrieving revision 1.285 diff -u -d -r1.284 -r1.285 --- Overview.html 1 Jul 2008 23:16:53 -0000 1.284 +++ Overview.html 1 Jul 2008 23:32:22 -0000 1.285 @@ -1424,13 +1424,43 @@ <p>In this section, the following changes were made:</p> <ul> + <li>A statement defining the origin of a resource + and the effective script origin of a resource was + updated to read (highlighted text added): <q>The + origin of a resource and the effective + script origin of a resource are both either opaque + identifiers or tuples consisting of a scheme + component, a host component, a port component, + <em class="highlight">and optionally extra + data</em>,</q> and the following statement was + added: <q>The extra data could include the certificate + of the site when using encrypted connections, to + ensure that if the site’s secure certificate + changes, the origin is considered to change as + well.</q></li> + <li>In the algorithm for determining the origin and + effective script origin of a URL, the following + statement was added: <q>In addition, if the URL is + in fact associated with a Document object that was + created by parsing the resource obtained from + fetching URL, and this was done over a secure + connection, then the server’s secure certificate + may be added to the origin as additional + data.</q></li> <li>In the algorithm for identifying the - <q>owner</q> (by which, in turn, the origin and + <q>owner</q> of a script (by which, in turn, the + origin and effective script origin are determined), the following case was added: <q>If a script is in an event handler content attribute: The owner is the Document to which the attribute node belongs.</q></li> + <li>In the algorithm for determining whether two + origins are of the same origin, <q>If either A [the + first origin to be compared] or B [the second + origin to be compared] have additional data, but + that data is not identical for both, return + false.</q></li> </ul> </div> <div id="scripting_wd2" class="section"> @@ -1770,7 +1800,7 @@ <p>The following names were added to the list of names in the Acknowledgements:</p> <blockquote> - <p>Felix Sasaki, Philip Jägenstedt</p> + <p>Eric Law, Felix Sasaki, Philip Jägenstedt</p> </blockquote> </div> </div> Index: Overview.src.html =================================================================== RCS file: /sources/public/html5/pubnotes/Overview.src.html,v retrieving revision 1.269 retrieving revision 1.270 diff -u -d -r1.269 -r1.270 --- Overview.src.html 1 Jul 2008 23:16:53 -0000 1.269 +++ Overview.src.html 1 Jul 2008 23:32:22 -0000 1.270 @@ -664,13 +664,43 @@ <p>In this section, the following changes were made:</p> <ul> + <li>A statement defining the origin of a resource + and the effective script origin of a resource was + updated to read (highlighted text added): <q>The + origin of a resource and the effective + script origin of a resource are both either opaque + identifiers or tuples consisting of a scheme + component, a host component, a port component, + <em class=highlight>and optionally extra + data</em>,</q> and the following statement was + added: <q>The extra data could include the certificate + of the site when using encrypted connections, to + ensure that if the site’s secure certificate + changes, the origin is considered to change as + well.</q></li> + <li>In the algorithm for determining the origin and + effective script origin of a URL, the following + statement was added: <q>In addition, if the URL is + in fact associated with a Document object that was + created by parsing the resource obtained from + fetching URL, and this was done over a secure + connection, then the server’s secure certificate + may be added to the origin as additional + data.</q></li> <li>In the algorithm for identifying the - <q>owner</q> (by which, in turn, the origin and + <q>owner</q> of a script (by which, in turn, the + origin and effective script origin are determined), the following case was added: <q>If a script is in an event handler content attribute: The owner is the Document to which the attribute node belongs.</q></li> + <li>In the algorithm for determining whether two + origins are of the same origin, <q>If either A [the + first origin to be compared] or B [the second + origin to be compared] have additional data, but + that data is not identical for both, return + false.</q></li> </ul> </section> <section id=scripting_wd2> @@ -901,7 +931,7 @@ <p>The following names were added to the list of names in the Acknowledgements:</p> <blockquote> - <p>Felix Sasaki, Philip Jägenstedt</p> + <p>Eric Law, Felix Sasaki, Philip Jägenstedt</p> </blockquote> </section> </section>
Received on Tuesday, 1 July 2008 23:33:03 UTC