Open Firebug, enable the Console panel and select the DOM panel.
Click on the Clear Storage button below.
Refresh the page (or pick Refresh from DOM panel option menu).
Verify following properties: globalStorage should display 0 items in Storage localStorage should display 0 items in Storage sessionStorage should display 0 items in Storage
Switch to the Console panel and verify the log globalStorage0 items in Storage localStorage0 items in Storage sessionStorage0 items in Storage
Switch back to the DOM panel.
Click on the Init Storage button below and refresh the page.
Verify following properties: globalStorage should display 1 item in Storage test1="Hello1" localStorage should display 10 items in Storage item6="6", item3="3", more... sessionStorage should display 2 items in Storage issue="value1", name="item1"
Switch to the Console panel and verify the log globalStorage:1 item in Storage test1="Hello1" localStorage:10 items in Storage item6="6", item3="3", item8="8", item0="0", item5="5", item2="2", item7="7", item4="4", item9="9", item1="1" sessionStorage:2 items in Storage issue="value1", name="item1"