DOM Storage - To index of all tests and compatibility tables

Below are tests for sessionStorage and localStorage in various web browsers. Please note that sessionStorage is only for the current window and session, whereas localStorage is saved between sessions.

sessionStorage

sessionStorage["name"] = "Robert";
var theName = sessionStorage["name"];

Result: FAILED

Works in:

localStorage

localStorage["occupation"] = "Web Developer";
var occupation = localStorage["occupation"];

Result: FAILED

Works in: