Lines Matching refs:foo
14 PASS storage.getItem('foo') is null
15 PASS storage.foo is undefined.
16 PASS storage['foo'] is undefined.
17 storage.foo = 'x'
18 PASS storage.foo is "x"
19 PASS storage['foo'] is "x"
20 PASS storage.getItem('foo') is "x"
21 storage['foo'] = 'y'
22 PASS storage.foo is "y"
23 PASS storage['foo'] is "y"
24 PASS storage.getItem('foo') is "y"
25 storage.setItem('foo', 'z')
26 PASS storage.foo is "z"
27 PASS storage['foo'] is "z"
28 PASS storage.getItem('foo') is "z"
76 Setting a non-ascii string to foo
129 PASS storage.getItem('foo') is null
130 PASS storage.foo is undefined.
131 PASS storage['foo'] is undefined.
132 storage.foo = 'x'
133 PASS storage.foo is "x"
134 PASS storage['foo'] is "x"
135 PASS storage.getItem('foo') is "x"
136 storage['foo'] = 'y'
137 PASS storage.foo is "y"
138 PASS storage['foo'] is "y"
139 PASS storage.getItem('foo') is "y"
140 storage.setItem('foo', 'z')
141 PASS storage.foo is "z"
142 PASS storage['foo'] is "z"
143 PASS storage.getItem('foo') is "z"
191 Setting a non-ascii string to foo