| OLD | NEW |
| 1 Test .removeItem within DOM Storage. | 1 Test .removeItem within DOM Storage. |
| 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 storage.foo1 is undefined. | 10 PASS storage.foo1 is undefined. |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 PASS storage.getItem('foo3') is null | 55 PASS storage.getItem('foo3') is null |
| 56 storage.setItem('foo3', 'bar') | 56 storage.setItem('foo3', 'bar') |
| 57 PASS storage.getItem('foo3') is "bar" | 57 PASS storage.getItem('foo3') is "bar" |
| 58 storage.removeItem('foo3') | 58 storage.removeItem('foo3') |
| 59 PASS storage.getItem('foo3') is null | 59 PASS storage.getItem('foo3') is null |
| 60 storage.removeItem('foo3') | 60 storage.removeItem('foo3') |
| 61 PASS storage.getItem('foo3') is null | 61 PASS storage.getItem('foo3') is null |
| 62 PASS successfullyParsed is true | 62 PASS successfullyParsed is true |
| 63 | 63 |
| 64 TEST COMPLETE | 64 TEST COMPLETE |
| 65 PASS successfullyParsed is true |
| 66 |
| 67 TEST COMPLETE |
| 65 | 68 |
| OLD | NEW |