OLD | NEW |
1 Test some corner case DOM Storage values. | 1 Test some corner case DOM Storage values. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 Testing sessionStorage | 6 Testing sessionStorage |
7 storage.clear() | 7 storage.clear() |
8 PASS storage.length is 0 | 8 PASS storage.length is 0 |
9 | 9 |
10 PASS typeof storage['foo'] is "undefined" | 10 PASS typeof storage['foo'] is "undefined" |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 storage.setItem('foo12', k) | 197 storage.setItem('foo12', k) |
198 PASS typeof storage['foo12'] is "string" | 198 PASS typeof storage['foo12'] is "string" |
199 PASS storage['foo12'] is "ÿ찡\u0000hello" | 199 PASS storage['foo12'] is "ÿ찡\u0000hello" |
200 PASS typeof storage.foo12 is "string" | 200 PASS typeof storage.foo12 is "string" |
201 PASS storage.foo12 is "ÿ찡\u0000hello" | 201 PASS storage.foo12 is "ÿ찡\u0000hello" |
202 PASS typeof storage.getItem('foo12') is "string" | 202 PASS typeof storage.getItem('foo12') is "string" |
203 PASS storage.getItem('foo12') is "ÿ찡\u0000hello" | 203 PASS storage.getItem('foo12') is "ÿ찡\u0000hello" |
204 PASS successfullyParsed is true | 204 PASS successfullyParsed is true |
205 | 205 |
206 TEST COMPLETE | 206 TEST COMPLETE |
| 207 PASS successfullyParsed is true |
| 208 |
| 209 TEST COMPLETE |
207 | 210 |
OLD | NEW |