Does anyone know if the current Beta IE9 fully supports HTML5 "localStorage" functionality? Typically, a test to support "localStorage" can be performed using js code, like:
try {
return ('localStorage' in window) && window['localStorage'] !== null;
} catch (e) {
return false;
}
Well, it looks like this type of test returns "true", but if you try something like:
localStorage.removeItem ('key')
an error appears in the Javascript Console (error SCRIPT16389). Additional Information?
source
share