[html5] r4391 - [giow] (0) keys are strings. oops.

whatwg at whatwg.org whatwg at whatwg.org
Tue Dec 1 18:10:35 PST 2009


Author: ianh
Date: 2009-12-01 18:10:33 -0800 (Tue, 01 Dec 2009)
New Revision: 4391

Modified:
   complete.html
   source
Log:
[giow] (0) keys are strings. oops.

Modified: complete.html
===================================================================
--- complete.html	2009-12-01 09:36:51 UTC (rev 4390)
+++ complete.html	2009-12-02 02:10:33 UTC (rev 4391)
@@ -110,7 +110,7 @@
 
   <header class=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
    <hgroup><h1>Web Applications 1.0</h1>
-    <h2 class="no-num no-toc">Draft Standard — 1 December 2009</h2>
+    <h2 class="no-num no-toc">Draft Standard — 2 December 2009</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>-->
@@ -57969,7 +57969,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 any <a href=#dom-storage-key title=dom-Storage-key>key</a>(in unsigned long index);
+  getter 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 data);
   deleter void <a href=#dom-storage-removeitem title=dom-Storage-removeItem>removeItem</a>(in DOMString key);

Modified: source
===================================================================
--- source	2009-12-01 09:36:51 UTC (rev 4390)
+++ source	2009-12-02 02:10:33 UTC (rev 4391)
@@ -65487,7 +65487,7 @@
 
   <pre class="idl">interface <dfn>Storage</dfn> {
   readonly attribute unsigned long <span title="dom-Storage-length">length</span>;
-  getter any <span title="dom-Storage-key">key</span>(in unsigned long index);
+  getter 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 data);
   deleter void <span title="dom-Storage-removeItem">removeItem</span>(in DOMString key);




More information about the Commit-Watchers mailing list