| OLD | NEW |
| 1 CONSOLE ERROR: line 1: ConstraintError: Key already exists in the object store. |
| 1 Test event propogation on IDBTransaction. | 2 Test event propogation on IDBTransaction. |
| 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 dbname = "transaction-event-propagation.html" | 7 dbname = "transaction-event-propagation.html" |
| 7 indexedDB.deleteDatabase(dbname) | 8 indexedDB.deleteDatabase(dbname) |
| 8 indexedDB.open(dbname) | 9 indexedDB.open(dbname) |
| 9 store = db.createObjectStore('storeName', null) | 10 store = db.createObjectStore('storeName', null) |
| 10 store.add({x: 'value', y: 'zzz'}, 'key') | 11 store.add({x: 'value', y: 'zzz'}, 'key') |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 PASS dbCaptureFired is true | 67 PASS dbCaptureFired is true |
| 67 PASS completeFired is false | 68 PASS completeFired is false |
| 68 PASS dbBubbleFired2 is false | 69 PASS dbBubbleFired2 is false |
| 69 PASS event.target is trans | 70 PASS event.target is trans |
| 70 PASS event.currentTarget is trans | 71 PASS event.currentTarget is trans |
| 71 | 72 |
| 72 PASS successfullyParsed is true | 73 PASS successfullyParsed is true |
| 73 | 74 |
| 74 TEST COMPLETE | 75 TEST COMPLETE |
| 75 | 76 |
| OLD | NEW |