OLD | NEW |
1 [Worker] Test IndexedDB workers, recursion, and transaction termination. | 1 [Worker] Test IndexedDB workers, recursion, and transaction termination. |
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 Starting worker: resources/transaction-complete-workers.js | 6 Starting worker: resources/transaction-complete-workers.js |
7 [Worker] indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB
|| self.msIndexedDB || self.OIndexedDB; | |
8 [Worker] | |
9 [Worker] dbname = "transaction-complete-workers.js" | 7 [Worker] dbname = "transaction-complete-workers.js" |
10 [Worker] indexedDB.deleteDatabase(dbname) | 8 [Worker] indexedDB.deleteDatabase(dbname) |
11 [Worker] indexedDB.open(dbname) | 9 [Worker] indexedDB.open(dbname) |
12 [Worker] | 10 [Worker] |
13 [Worker] prepareDatabase(): | 11 [Worker] prepareDatabase(): |
14 [Worker] db.createObjectStore('store') | 12 [Worker] db.createObjectStore('store') |
15 [Worker] | 13 [Worker] |
16 [Worker] createTransaction(): | 14 [Worker] createTransaction(): |
17 [Worker] transaction = db.transaction('store') | 15 [Worker] transaction = db.transaction('store') |
18 [Worker] store = transaction.objectStore('store') | 16 [Worker] store = transaction.objectStore('store') |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 PASS [Worker] Transaction completed | 77 PASS [Worker] Transaction completed |
80 [Worker] Expecting exception from store.get(0) | 78 [Worker] Expecting exception from store.get(0) |
81 PASS [Worker] Exception was thrown. | 79 PASS [Worker] Exception was thrown. |
82 PASS [Worker] code is 0 | 80 PASS [Worker] code is 0 |
83 PASS [Worker] ename is 'TransactionInactiveError' | 81 PASS [Worker] ename is 'TransactionInactiveError' |
84 [Worker] Exception message: Failed to execute 'get' on 'IDBObjectStore': The tra
nsaction has finished. | 82 [Worker] Exception message: Failed to execute 'get' on 'IDBObjectStore': The tra
nsaction has finished. |
85 PASS successfullyParsed is true | 83 PASS successfullyParsed is true |
86 | 84 |
87 TEST COMPLETE | 85 TEST COMPLETE |
88 | 86 |
OLD | NEW |