| 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 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; | 7 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; |
| 7 | 8 |
| 8 dbname = "transaction-event-propagation.html" | 9 dbname = "transaction-event-propagation.html" |
| 9 indexedDB.deleteDatabase(dbname) | 10 indexedDB.deleteDatabase(dbname) |
| 10 indexedDB.open(dbname) | 11 indexedDB.open(dbname) |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 PASS dbCaptureFired is true | 69 PASS dbCaptureFired is true |
| 69 PASS completeFired is false | 70 PASS completeFired is false |
| 70 PASS dbBubbleFired2 is false | 71 PASS dbBubbleFired2 is false |
| 71 PASS event.target is trans | 72 PASS event.target is trans |
| 72 PASS event.currentTarget is trans | 73 PASS event.currentTarget is trans |
| 73 | 74 |
| 74 PASS successfullyParsed is true | 75 PASS successfullyParsed is true |
| 75 | 76 |
| 76 TEST COMPLETE | 77 TEST COMPLETE |
| 77 | 78 |
| OLD | NEW |