- From: poot <cvsmail@w3.org>
- Date: Tue, 21 Jun 2011 18:09:37 -0400
- To: public-html-diffs@w3.org
webstorage; hixie: xref (whatwg r6267) http://dev.w3.org/cvsweb/html5/webstorage/Overview.html?r1=1.172&r2=1.173&f=h http://html5.org/tools/web-apps-tracker?from=6266&to=6267 =================================================================== RCS file: /sources/public/html5/webstorage/Overview.html,v retrieving revision 1.172 retrieving revision 1.173 diff -u -d -r1.172 -r1.173 --- Overview.html 13 Jun 2011 23:39:29 -0000 1.172 +++ Overview.html 21 Jun 2011 22:09:30 -0000 1.173 @@ -210,7 +210,7 @@ <p><a href="http://www.w3.org/"><img alt="W3C" height="48" src="http://www.w3.org/Icons/w3c_home" width="72"></a></p> <h1>Web Storage</h1> - <h2 class="no-num no-toc" id="editor-s-draft-13-june-2011">Editor's Draft 13 June 2011</h2> + <h2 class="no-num no-toc" id="editor-s-draft-21-june-2011">Editor's Draft 21 June 2011</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/webstorage/">http://www.w3.org/TR/webstorage/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -313,7 +313,7 @@ </dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications Working Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 13 June 2011 Editor's Draft. + This specification is the 21 June 2011 Editor's Draft. </p><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February 2004 W3C Patent Policy</a>. W3C maintains a <a href="http://www.w3.org/2004/01/pp-impl/42538/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables @@ -543,10 +543,10 @@ methods wait until the data has been physically written to disk. Only consistency in what different scripts accessing the same underlying list of key/value pairs see is required.<h3 id="the-sessionstorage-attribute"><span class="secno">4.2 </span>The <code title="dom-sessionStorage"><a href="#dom-sessionstorage">sessionStorage</a></code> attribute</h3><pre class="idl">[Supplemental, NoInterfaceObject] -interface <span>WindowSessionStorage</span> { +interface <dfn id="windowsessionstorage">WindowSessionStorage</dfn> { readonly attribute <a href="#storage-0">Storage</a> <a href="#dom-sessionstorage" title="dom-sessionStorage">sessionStorage</a>; }; -<span>Window</span> implements <span>WindowSessionStorage</span>;</pre><p>The <dfn id="dom-sessionstorage" title="dom-sessionStorage"><code>sessionStorage</code></dfn> +<span>Window</span> implements <a href="#windowsessionstorage">WindowSessionStorage</a>;</pre><p>The <dfn id="dom-sessionstorage" title="dom-sessionStorage"><code>sessionStorage</code></dfn> attribute represents the set of storage areas specific to the current <span>top-level browsing context</span>.<p>Each <span>top-level browsing context</span> has a unique set of session storage areas, one for each <span>origin</span>.<p>User agents should not expire data from a browsing context's @@ -595,10 +595,10 @@ object's <code title="dom-sessionStorage"><a href="#dom-sessionstorage">sessionStorage</a></code> attribute's <code><a href="#storage-0">Storage</a></code> object is associated with the same storage area, other than <var title="">x</var>, a <code title="event-storage"><a href="#event-storage">storage</a></code> event must be fired, as <a href="#event-storage" title="event-storage">described below</a>.<h3 id="the-localstorage-attribute"><span class="secno">4.3 </span>The <code title="dom-localStorage"><a href="#dom-localstorage">localStorage</a></code> attribute</h3><pre class="idl">[Supplemental, NoInterfaceObject] -interface <span>WindowLocalStorage</span> { +interface <dfn id="windowlocalstorage">WindowLocalStorage</dfn> { readonly attribute <a href="#storage-0">Storage</a> <a href="#dom-localstorage" title="dom-localStorage">localStorage</a>; }; -<span>Window</span> implements <span>WindowLocalStorage</span>;</pre><p>The <dfn id="dom-localstorage" title="dom-localStorage"><code>localStorage</code></dfn> +<span>Window</span> implements <a href="#windowlocalstorage">WindowLocalStorage</a>;</pre><p>The <dfn id="dom-localstorage" title="dom-localStorage"><code>localStorage</code></dfn> object provides a <code><a href="#storage-0">Storage</a></code> object for an <span>origin</span>.<p>User agents must have a set of local storage areas, one for each <span>origin</span>.<p>User agents should expire data from the local storage areas only
Received on Tuesday, 21 June 2011 22:09:42 UTC