| OLD | NEW |
| 1 Test IndexedDB: should NOT throw when opening a database with a null name | 1 Test IndexedDB: should NOT throw when opening a database with a null name |
| 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 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; | |
| 7 | |
| 8 indexedDB.open(null); | 6 indexedDB.open(null); |
| 9 db = event.target.result | 7 db = event.target.result |
| 10 PASS db.name is 'null' | 8 PASS db.name is 'null' |
| 11 PASS successfullyParsed is true | 9 PASS successfullyParsed is true |
| 12 | 10 |
| 13 TEST COMPLETE | 11 TEST COMPLETE |
| 14 | 12 |
| OLD | NEW |