This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 25171 - interface Storage { readonly attribute unsigned long length; getter DOMString key(in unsigned long index); getter any getItem(in DOMString key); setter creator [...]
Summary: interface Storage { readonly attribute unsigned long length; ...
Status: RESOLVED INVALID
Alias: None
Product: WHATWG
Classification: Unclassified
Component: HTML (show other bugs)
Version: unspecified
Hardware: Other other
: P3 normal
Target Milestone: Unsorted
Assignee: Ian 'Hixie' Hickson
QA Contact: contributor
URL: http://www.whatwg.org/specs/web-apps/...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-27 09:11 UTC by contributor
Modified: 2014-03-31 17:09 UTC (History)
2 users (show)

See Also:


Attachments

Description contributor 2014-03-27 09:11:02 UTC
Specification: http://dev.w3.org/html5/webstorage/
Multipage: http://www.whatwg.org/C#top
Complete: http://www.whatwg.org/c#top
Referrer: 

Comment:
    interface Storage {  
      readonly attribute unsigned long length;	
      getter DOMString key(in unsigned long index);  
      getter any getItem(in DOMString key);  
      setter creator void setItem(in DOMString key, in any value);  
      deleter void removeItem(in DOMString key);  
      void clear();  
    };	

Posted from: 197.14.1.65
User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0