| 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 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; | 8 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; |
| 7 | 9 |
| 8 dbname = "request-event-propagation.html" | 10 dbname = "request-event-propagation.html" |
| 9 indexedDB.deleteDatabase(dbname) | 11 indexedDB.deleteDatabase(dbname) |
| 10 indexedDB.open(dbname) | 12 indexedDB.open(dbname) |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 PASS dbCaptureFired is true | 140 PASS dbCaptureFired is true |
| 139 PASS captureFired is true | 141 PASS captureFired is true |
| 140 PASS requestFired is true | 142 PASS requestFired is true |
| 141 PASS bubbleFired is false | 143 PASS bubbleFired is false |
| 142 PASS dbBubbleFired is false | 144 PASS dbBubbleFired is false |
| 143 | 145 |
| 144 PASS successfullyParsed is true | 146 PASS successfullyParsed is true |
| 145 | 147 |
| 146 TEST COMPLETE | 148 TEST COMPLETE |
| 147 | 149 |
| OLD | NEW |