OLD | NEW |
| 1 CONSOLE WARNING: 'DOMStringList.contains()' is deprecated, and will be removed. |
1 Test IndexedDB transaction basics. | 2 Test IndexedDB transaction basics. |
2 | 3 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 5 |
5 | 6 |
6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; | 7 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; |
7 | 8 |
8 dbname = "transaction-basics.html" | 9 dbname = "transaction-basics.html" |
9 indexedDB.deleteDatabase(dbname) | 10 indexedDB.deleteDatabase(dbname) |
10 indexedDB.open(dbname) | 11 indexedDB.open(dbname) |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 db.createObjectStore('null') | 249 db.createObjectStore('null') |
249 db.createObjectStore('undefined') | 250 db.createObjectStore('undefined') |
250 PASS transaction = db.transaction(null) did not throw exception. | 251 PASS transaction = db.transaction(null) did not throw exception. |
251 PASS transaction.objectStore('null') is non-null. | 252 PASS transaction.objectStore('null') is non-null. |
252 PASS transaction = db.transaction(undefined) did not throw exception. | 253 PASS transaction = db.transaction(undefined) did not throw exception. |
253 PASS transaction.objectStore('undefined') is non-null. | 254 PASS transaction.objectStore('undefined') is non-null. |
254 PASS successfullyParsed is true | 255 PASS successfullyParsed is true |
255 | 256 |
256 TEST COMPLETE | 257 TEST COMPLETE |
257 | 258 |
OLD | NEW |