| OLD | NEW |
| 1 [Worker] Test IndexedDB's basics. | 1 [Worker] Test IndexedDB's basics. |
| 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/basics.js | 6 Starting worker: resources/basics.js |
| 7 [Worker] indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB
|| self.msIndexedDB || self.OIndexedDB; | |
| 8 [Worker] | |
| 9 [Worker] indexedDB.open('basics') | 7 [Worker] indexedDB.open('basics') |
| 10 PASS [Worker] 'result' in request is true | 8 PASS [Worker] 'result' in request is true |
| 11 [Worker] Expecting exception from request.result | 9 [Worker] Expecting exception from request.result |
| 12 PASS [Worker] Exception was thrown. | 10 PASS [Worker] Exception was thrown. |
| 13 PASS [Worker] code is DOMException.INVALID_STATE_ERR | 11 PASS [Worker] code is DOMException.INVALID_STATE_ERR |
| 14 PASS [Worker] ename is 'InvalidStateError' | 12 PASS [Worker] ename is 'InvalidStateError' |
| 15 [Worker] Exception message: Failed to read the 'result' property from 'IDBReques
t': The request has not finished. | 13 [Worker] Exception message: Failed to read the 'result' property from 'IDBReques
t': The request has not finished. |
| 16 PASS [Worker] 'error' in request is true | 14 PASS [Worker] 'error' in request is true |
| 17 [Worker] Expecting exception from request.error | 15 [Worker] Expecting exception from request.error |
| 18 PASS [Worker] Exception was thrown. | 16 PASS [Worker] Exception was thrown. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 38 PASS [Worker] 'transaction' in event.target is true | 36 PASS [Worker] 'transaction' in event.target is true |
| 39 PASS [Worker] event.target.transaction is null | 37 PASS [Worker] event.target.transaction is null |
| 40 PASS [Worker] 'readyState' in request is true | 38 PASS [Worker] 'readyState' in request is true |
| 41 PASS [Worker] event.target.readyState is "done" | 39 PASS [Worker] event.target.readyState is "done" |
| 42 PASS [Worker] 'onsuccess' in event.target is true | 40 PASS [Worker] 'onsuccess' in event.target is true |
| 43 PASS [Worker] 'onerror' in event.target is true | 41 PASS [Worker] 'onerror' in event.target is true |
| 44 PASS successfullyParsed is true | 42 PASS successfullyParsed is true |
| 45 | 43 |
| 46 TEST COMPLETE | 44 TEST COMPLETE |
| 47 | 45 |
| OLD | NEW |