blob: 6cdf19fd1fe2ffe67bca134b5d3ddc272d6ac243 [file] [log] [blame]
Verify that storage events fire even when only the case of the value changes.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Testing sessionStorage
storage.clear()
PASS storage.length is 0
Verify storage events are case sensitive
storage.foo = 'test'
Reset storage event list
storageEventList = new Array()
storage.foo = 'test'
PASS storageEventList.length is 0
storage.foo = 'TEST'
PASS storageEventList.length is 1
Testing localStorage
storage.clear()
PASS storage.length is 0
Verify storage events are case sensitive
storage.foo = 'test'
Reset storage event list
storageEventList = new Array()
storage.foo = 'test'
PASS storageEventList.length is 0
storage.foo = 'TEST'
PASS storageEventList.length is 1
PASS successfullyParsed is true
TEST COMPLETE