[html5] r5806 - [g] (1) Drop the syntax sugar for walking the keys of a Storage object.

whatwg at whatwg.org whatwg at whatwg.org
Fri Jan 28 16:18:35 PST 2011


Author: ianh
Date: 2011-01-28 16:18:34 -0800 (Fri, 28 Jan 2011)
New Revision: 5806

Modified:
   complete.html
   source
Log:
[g] (1) Drop the syntax sugar for walking the keys of a Storage object.

Modified: complete.html
===================================================================
--- complete.html	2011-01-25 00:08:40 UTC (rev 5805)
+++ complete.html	2011-01-29 00:18:34 UTC (rev 5806)
@@ -221,7 +221,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
    <hgroup><h1>Web Applications 1.0</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 25 January 2011</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 29 January 2011</h2>
    </hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
    <p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
    <!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -74906,7 +74906,7 @@
 
   <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>;
-  getter DOMString <a href=#dom-storage-key title=dom-Storage-key>key</a>(in unsigned long index);
+  DOMString <a href=#dom-storage-key title=dom-Storage-key>key</a>(in unsigned long index);
   getter any <a href=#dom-storage-getitem title=dom-Storage-getItem>getItem</a>(in DOMString key);
   setter creator void <a href=#dom-storage-setitem title=dom-Storage-setItem>setItem</a>(in DOMString key, in any value);
   deleter void <a href=#dom-storage-removeitem title=dom-Storage-removeItem>removeItem</a>(in DOMString key);
@@ -74935,12 +74935,6 @@
   all be associated with the same list of key/value pairs
   simultaneously.</p>
 
-  <p>The object's <a href=#supported-property-indices>supported property indices</a> are the
-  numbers in the range zero to one less than the number of key/value
-  pairs currently present in the list associated with the object. If
-  the list is empty, then there are no <a href=#supported-property-indices>supported property
-  indices</a>.</p>
-
   <p>The <dfn id=dom-storage-length title=dom-Storage-length><code>length</code></dfn>
   attribute must return the number of key/value pairs currently
   present in the list associated with the object.</p>

Modified: source
===================================================================
--- source	2011-01-25 00:08:40 UTC (rev 5805)
+++ source	2011-01-29 00:18:34 UTC (rev 5806)
@@ -84804,7 +84804,7 @@
 
   <pre class="idl">interface <dfn>Storage</dfn> {
   readonly attribute unsigned long <span title="dom-Storage-length">length</span>;
-  getter DOMString <span title="dom-Storage-key">key</span>(in unsigned long index);
+  DOMString <span title="dom-Storage-key">key</span>(in unsigned long index);
   getter any <span title="dom-Storage-getItem">getItem</span>(in DOMString key);
   setter creator void <span title="dom-Storage-setItem">setItem</span>(in DOMString key, in any value);
   deleter void <span title="dom-Storage-removeItem">removeItem</span>(in DOMString key);
@@ -84837,12 +84837,6 @@
   all be associated with the same list of key/value pairs
   simultaneously.</p>
 
-  <p>The object's <span>supported property indices</span> are the
-  numbers in the range zero to one less than the number of key/value
-  pairs currently present in the list associated with the object. If
-  the list is empty, then there are no <span>supported property
-  indices</span>.</p>
-
   <p>The <dfn title="dom-Storage-length"><code>length</code></dfn>
   attribute must return the number of key/value pairs currently
   present in the list associated with the object.</p>




More information about the Commit-Watchers mailing list