OLD | NEW |
| 1 CONSOLE WARNING: 'DOMStringList.contains()' is deprecated, and will be removed. |
| 2 CONSOLE WARNING: 'DOMStringList.item(n)' is deprecated, and will be removed. Ple
ase use indexing instead, e.g.: list[n] |
1 Test the basics of IndexedDB's IDBDatabase. | 3 Test the basics of IndexedDB's IDBDatabase. |
2 | 4 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 6 |
5 | 7 |
6 dbname = "database-basics.html" | 8 dbname = "database-basics.html" |
7 indexedDB.deleteDatabase(dbname) | 9 indexedDB.deleteDatabase(dbname) |
8 indexedDB.open(dbname) | 10 indexedDB.open(dbname) |
9 Test that you can't open a transaction while in a versionchange transaction | 11 Test that you can't open a transaction while in a versionchange transaction |
10 Expecting exception from db.transaction("doesntExist") | 12 Expecting exception from db.transaction("doesntExist") |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 PASS Exception was thrown. | 53 PASS Exception was thrown. |
52 PASS code is DOMException.INVALID_STATE_ERR | 54 PASS code is DOMException.INVALID_STATE_ERR |
53 PASS ename is 'InvalidStateError' | 55 PASS ename is 'InvalidStateError' |
54 Exception message: Failed to execute 'transaction' on 'IDBDatabase': The databas
e connection is closing. | 56 Exception message: Failed to execute 'transaction' on 'IDBDatabase': The databas
e connection is closing. |
55 Call twice, make sure it's harmless | 57 Call twice, make sure it's harmless |
56 db.close() | 58 db.close() |
57 PASS successfullyParsed is true | 59 PASS successfullyParsed is true |
58 | 60 |
59 TEST COMPLETE | 61 TEST COMPLETE |
60 | 62 |
OLD | NEW |