CVS html5/webstorage

Update of /sources/public/html5/webstorage
In directory roscoe:/tmp/cvs-serv20427

Modified Files:
	Overview.html 
Log Message:
Try to define order for supported property names. This is not based on testing. If there are compatibility constraints here that prevent implementing this as specced, please let me know. (whatwg r7722)

--- /sources/public/html5/webstorage/Overview.html	2013/02/05 22:23:53	1.213
+++ /sources/public/html5/webstorage/Overview.html	2013/02/13 00:03:25	1.214
@@ -215,7 +215,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-5-february-2013">Editor's Draft 5 February 2013</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-13-february-2013">Editor's Draft 13 February 2013</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>
@@ -351,7 +351,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 5 February 2013 Editor's Draft.
+  This specification is the 13 February 2013 Editor's Draft.
   </p>
 
   
@@ -593,6 +593,7 @@
 
   <h3 id="the-storage-interface"><span class="secno">4.1 </span>The <code><a href="#storage-0">Storage</a></code> interface</h3>
 
+
   <pre class="idl">interface <dfn id="storage-0">Storage</dfn> {
   readonly attribute unsigned long <a href="#dom-storage-length" title="dom-Storage-length">length</a>;
   DOMString? <a href="#dom-storage-key" title="dom-Storage-key">key</a>(unsigned long index);
@@ -630,7 +631,8 @@
 
   <p>The <span>supported property names</span> on a
   <code><a href="#storage-0">Storage</a></code> object are the keys of each key/value pair
-  currently present in the list associated with the object.</p>
+  currently present in the list associated with the object, in the order that the keys were last
+  added to the storage area.</p>
 
   <p>The <dfn id="dom-storage-getitem" title="dom-Storage-getItem"><code>getItem(<var title="">key</var>)</code></dfn> method must return
   the current value associated with

Received on Wednesday, 13 February 2013 00:03:26 UTC