- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 20 Oct 2008 15:13:22 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv22887 Modified Files: Overview.html Log Message: Serialise a unique (non-host) origin to the string 'null' instead of the empty stirng. (whatwg r2356) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1528 retrieving revision 1.1529 diff -u -d -r1.1528 -r1.1529 --- Overview.html 20 Oct 2008 14:56:25 -0000 1.1528 +++ Overview.html 20 Oct 2008 15:13:19 -0000 1.1529 @@ -25876,8 +25876,7 @@ </dl><p>The <dfn id=unicode-serialization-of-an-origin>Unicode serialization of an origin</dfn> is the string obtained by applying the following algorithm to the given <a href=#origin-0>origin</a>:<ol><li><p>If the <a href=#origin-0>origin</a> in question is not a - scheme/host/port tuple, then return the empty string and abort - these steps.</li> + scheme/host/port tuple, then return the literal string "<code title="">null</code>" and abort these steps.</li> <li><p>Otherwise, let <var title="">result</var> be the scheme part of the <a href=#origin-0>origin</a> tuple.</li> @@ -25900,8 +25899,7 @@ </ol><p>The <dfn id=ascii-serialization-of-an-origin>ASCII serialization of an origin</dfn> is the string obtained by applying the following algorithm to the given <a href=#origin-0>origin</a>:<ol><li><p>If the <a href=#origin-0>origin</a> in question is not a - scheme/host/port tuple, then return the empty string and abort - these steps.</li> + scheme/host/port tuple, then return the literal string "<code title="">null</code>" and abort these steps.</li> <li><p>Otherwise, let <var title="">result</var> be the scheme part of the <a href=#origin-0>origin</a> tuple.</li>
Received on Monday, 20 October 2008 15:13:33 UTC