| OLD | NEW |
| 1 Regression test for WK82678 - don't commit after a blocked event | 1 Regression test for WK82678 - don't commit after a blocked event |
| 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; | 6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; |
| 7 PASS Boolean(indexedDB && IDBCursor && IDBDatabase && IDBDatabaseError && IDBDat
abaseException && IDBFactory && IDBIndex && IDBKeyRange && IDBObjectStore && IDB
Request && IDBTransaction) is true | 7 PASS Boolean(indexedDB && IDBCursor && IDBDatabase && IDBDatabaseError && IDBDat
abaseException && IDBFactory && IDBIndex && IDBKeyRange && IDBObjectStore && IDB
Request && IDBTransaction) is true |
| 8 | 8 |
| 9 Prepare Database | 9 Prepare Database |
| 10 request = indexedDB.deleteDatabase('dont-commit-on-blocked') | 10 request = indexedDB.deleteDatabase('dont-commit-on-blocked') |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 [Worker] | 42 [Worker] |
| 43 [Worker] onTransactionComplete | 43 [Worker] onTransactionComplete |
| 44 PASS [Worker] state is "success" | 44 PASS [Worker] state is "success" |
| 45 PASS [Worker] Number(db.version) is 2 | 45 PASS [Worker] Number(db.version) is 2 |
| 46 FAIL [Worker] db.objectStoreNames.contains('store1') should be true. Was false. | 46 FAIL [Worker] db.objectStoreNames.contains('store1') should be true. Was false. |
| 47 PASS [Worker] db.objectStoreNames.contains('store2') is true | 47 PASS [Worker] db.objectStoreNames.contains('store2') is true |
| 48 PASS successfullyParsed is true | 48 PASS successfullyParsed is true |
| 49 | 49 |
| 50 TEST COMPLETE | 50 TEST COMPLETE |
| 51 | 51 |
| OLD | NEW |