| OLD | NEW |
| 1 CONSOLE ERROR: line 1: ConstraintError: Key already exists in the object store. |
| 2 CONSOLE ERROR: line 1: ConstraintError: Key already exists in the object store. |
| 1 Test event propogation on IDBRequest. | 3 Test event propogation on IDBRequest. |
| 2 | 4 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 6 |
| 5 | 7 |
| 6 dbname = "request-event-propagation.html" | 8 dbname = "request-event-propagation.html" |
| 7 indexedDB.deleteDatabase(dbname) | 9 indexedDB.deleteDatabase(dbname) |
| 8 indexedDB.open(dbname) | 10 indexedDB.open(dbname) |
| 9 store = db.createObjectStore('storeName', null) | 11 store = db.createObjectStore('storeName', null) |
| 10 store.add({x: 'value', y: 'zzz'}, 'key') | 12 store.add({x: 'value', y: 'zzz'}, 'key') |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 PASS dbCaptureFired is true | 138 PASS dbCaptureFired is true |
| 137 PASS captureFired is true | 139 PASS captureFired is true |
| 138 PASS requestFired is true | 140 PASS requestFired is true |
| 139 PASS bubbleFired is false | 141 PASS bubbleFired is false |
| 140 PASS dbBubbleFired is false | 142 PASS dbBubbleFired is false |
| 141 | 143 |
| 142 PASS successfullyParsed is true | 144 PASS successfullyParsed is true |
| 143 | 145 |
| 144 TEST COMPLETE | 146 TEST COMPLETE |
| 145 | 147 |
| OLD | NEW |