summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/domstorage/complex-values-expected.txt
blob: 69d76447c3af318e4b65d5c2f17b6f19f4bc14c6 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
Test some corner case DOM Storage values.

On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".


Testing sessionStorage
storage.clear()
PASS storage.length is 0

PASS typeof storage['foo'] is "undefined"
PASS storage['foo'] is undefined.
PASS typeof storage.foo is "undefined"
PASS storage.foo is undefined.
PASS typeof storage.getItem('foo') is "object"
PASS storage.getItem('foo') is null

storage.foo1 = null
PASS typeof storage['foo1'] is "string"
PASS storage['foo1'] is "null"
PASS typeof storage.foo1 is "string"
PASS storage.foo1 is "null"
PASS typeof storage.getItem('foo1') is "string"
PASS storage.getItem('foo1') is "null"
storage['foo2'] = null
PASS typeof storage['foo2'] is "string"
PASS storage['foo2'] is "null"
PASS typeof storage.foo2 is "string"
PASS storage.foo2 is "null"
PASS typeof storage.getItem('foo2') is "string"
PASS storage.getItem('foo2') is "null"
storage.setItem('foo3', null)
PASS typeof storage['foo3'] is "string"
PASS storage['foo3'] is "null"
PASS typeof storage.foo3 is "string"
PASS storage.foo3 is "null"
PASS typeof storage.getItem('foo3') is "string"
PASS storage.getItem('foo3') is "null"

storage.foo4 = undefined
PASS typeof storage['foo4'] is "string"
PASS storage['foo4'] is "undefined"
PASS typeof storage.foo4 is "string"
PASS storage.foo4 is "undefined"
PASS typeof storage.getItem('foo4') is "string"
PASS storage.getItem('foo4') is "undefined"
storage['foo5'] = undefined
PASS typeof storage['foo5'] is "string"
PASS storage['foo5'] is "undefined"
PASS typeof storage.foo5 is "string"
PASS storage.foo5 is "undefined"
PASS typeof storage.getItem('foo5') is "string"
PASS storage.getItem('foo5') is "undefined"
storage.setItem('foo6', undefined)
PASS typeof storage['foo6'] is "string"
PASS storage['foo6'] is "undefined"
PASS typeof storage.foo6 is "string"
PASS storage.foo6 is "undefined"
PASS typeof storage.getItem('foo6') is "string"
PASS storage.getItem('foo6') is "undefined"

storage.foo7 = 2
PASS typeof storage['foo7'] is "string"
PASS storage['foo7'] is "2"
PASS typeof storage.foo7 is "string"
PASS storage.foo7 is "2"
PASS typeof storage.getItem('foo7') is "string"
PASS storage.getItem('foo7') is "2"
storage['foo8'] = 2
PASS typeof storage['foo8'] is "string"
PASS storage['foo8'] is "2"
PASS typeof storage.foo8 is "string"
PASS storage.foo8 is "2"
PASS typeof storage.getItem('foo8') is "string"
PASS storage.getItem('foo8') is "2"
storage.setItem('foo9', 2)
PASS typeof storage['foo9'] is "string"
PASS storage['foo9'] is "2"
PASS typeof storage.foo9 is "string"
PASS storage.foo9 is "2"
PASS typeof storage.getItem('foo9') is "string"
PASS storage.getItem('foo9') is "2"

storage.foo10 = k
PASS typeof storage['foo10'] is "string"
PASS storage['foo10'] is "ÿ찡hello"
PASS typeof storage.foo10 is "string"
PASS storage.foo10 is "ÿ찡hello"
PASS typeof storage.getItem('foo10') is "string"
PASS storage.getItem('foo10') is "ÿ찡hello"
storage['foo11'] = k
PASS typeof storage['foo11'] is "string"
PASS storage['foo11'] is "ÿ찡hello"
PASS typeof storage.foo11 is "string"
PASS storage.foo11 is "ÿ찡hello"
PASS typeof storage.getItem('foo11') is "string"
PASS storage.getItem('foo11') is "ÿ찡hello"
storage.setItem('foo12', k)
PASS typeof storage['foo12'] is "string"
PASS storage['foo12'] is "ÿ찡hello"
PASS typeof storage.foo12 is "string"
PASS storage.foo12 is "ÿ찡hello"
PASS typeof storage.getItem('foo12') is "string"
PASS storage.getItem('foo12') is "ÿ찡hello"


Testing localStorage
storage.clear()
PASS storage.length is 0

PASS typeof storage['foo'] is "undefined"
PASS storage['foo'] is undefined.
PASS typeof storage.foo is "undefined"
PASS storage.foo is undefined.
PASS typeof storage.getItem('foo') is "object"
PASS storage.getItem('foo') is null

storage.foo1 = null
PASS typeof storage['foo1'] is "string"
PASS storage['foo1'] is "null"
PASS typeof storage.foo1 is "string"
PASS storage.foo1 is "null"
PASS typeof storage.getItem('foo1') is "string"
PASS storage.getItem('foo1') is "null"
storage['foo2'] = null
PASS typeof storage['foo2'] is "string"
PASS storage['foo2'] is "null"
PASS typeof storage.foo2 is "string"
PASS storage.foo2 is "null"
PASS typeof storage.getItem('foo2') is "string"
PASS storage.getItem('foo2') is "null"
storage.setItem('foo3', null)
PASS typeof storage['foo3'] is "string"
PASS storage['foo3'] is "null"
PASS typeof storage.foo3 is "string"
PASS storage.foo3 is "null"
PASS typeof storage.getItem('foo3') is "string"
PASS storage.getItem('foo3') is "null"

storage.foo4 = undefined
PASS typeof storage['foo4'] is "string"
PASS storage['foo4'] is "undefined"
PASS typeof storage.foo4 is "string"
PASS storage.foo4 is "undefined"
PASS typeof storage.getItem('foo4') is "string"
PASS storage.getItem('foo4') is "undefined"
storage['foo5'] = undefined
PASS typeof storage['foo5'] is "string"
PASS storage['foo5'] is "undefined"
PASS typeof storage.foo5 is "string"
PASS storage.foo5 is "undefined"
PASS typeof storage.getItem('foo5') is "string"
PASS storage.getItem('foo5') is "undefined"
storage.setItem('foo6', undefined)
PASS typeof storage['foo6'] is "string"
PASS storage['foo6'] is "undefined"
PASS typeof storage.foo6 is "string"
PASS storage.foo6 is "undefined"
PASS typeof storage.getItem('foo6') is "string"
PASS storage.getItem('foo6') is "undefined"

storage.foo7 = 2
PASS typeof storage['foo7'] is "string"
PASS storage['foo7'] is "2"
PASS typeof storage.foo7 is "string"
PASS storage.foo7 is "2"
PASS typeof storage.getItem('foo7') is "string"
PASS storage.getItem('foo7') is "2"
storage['foo8'] = 2
PASS typeof storage['foo8'] is "string"
PASS storage['foo8'] is "2"
PASS typeof storage.foo8 is "string"
PASS storage.foo8 is "2"
PASS typeof storage.getItem('foo8') is "string"
PASS storage.getItem('foo8') is "2"
storage.setItem('foo9', 2)
PASS typeof storage['foo9'] is "string"
PASS storage['foo9'] is "2"
PASS typeof storage.foo9 is "string"
PASS storage.foo9 is "2"
PASS typeof storage.getItem('foo9') is "string"
PASS storage.getItem('foo9') is "2"

storage.foo10 = k
PASS typeof storage['foo10'] is "string"
PASS storage['foo10'] is "ÿ찡hello"
PASS typeof storage.foo10 is "string"
PASS storage.foo10 is "ÿ찡hello"
PASS typeof storage.getItem('foo10') is "string"
PASS storage.getItem('foo10') is "ÿ찡hello"
storage['foo11'] = k
PASS typeof storage['foo11'] is "string"
PASS storage['foo11'] is "ÿ찡hello"
PASS typeof storage.foo11 is "string"
PASS storage.foo11 is "ÿ찡hello"
PASS typeof storage.getItem('foo11') is "string"
PASS storage.getItem('foo11') is "ÿ찡hello"
storage.setItem('foo12', k)
PASS typeof storage['foo12'] is "string"
PASS storage['foo12'] is "ÿ찡hello"
PASS typeof storage.foo12 is "string"
PASS storage.foo12 is "ÿ찡hello"
PASS typeof storage.getItem('foo12') is "string"
PASS storage.getItem('foo12') is "ÿ찡hello"
PASS successfullyParsed is true

TEST COMPLETE