1Verify that storage events fire even when only the case of the value changes. 2 3On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 4 5 6Testing sessionStorage 7storage.clear() 8PASS storage.length is 0 9 10Verify storage events are case sensitive 11storage.foo = 'test' 12Reset storage event list 13storageEventList = new Array() 14storage.foo = 'test' 15PASS storageEventList.length is 0 16storage.foo = 'TEST' 17PASS storageEventList.length is 1 18 19 20Testing localStorage 21storage.clear() 22PASS storage.length is 0 23 24Verify storage events are case sensitive 25storage.foo = 'test' 26Reset storage event list 27storageEventList = new Array() 28storage.foo = 'test' 29PASS storageEventList.length is 0 30storage.foo = 'TEST' 31PASS storageEventList.length is 1 32 33 34PASS successfullyParsed is true 35 36TEST COMPLETE 37 38 39