[whatwg] question about Web Storage setItem()'s behavior

Hi,

I'm implementing the HTML5 Web Storage using Gears
(http://code.google.com/p/gear5/), so I have several questions with
the spec.

-Storage.setItem(key, val)
--is key allowed non-string type object?
--and when pass non-string object to key/value, is it automatically
converted to string?(I'm considering to convert to use String
constructor - String(key) )
--when value is null, should `setItem("key", null)` behave as like as
`removeItem("key")`? (localStorage.setItem("key", null);
alert(localStorage.length); <-- what is value displayed?)

Shumpei

Received on Sunday, 2 August 2009 19:17:58 UTC