summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/domstorage/events/case-sensitive-expected.txt
blob: 6cdf19fd1fe2ffe67bca134b5d3ddc272d6ac243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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