| OLD | NEW |
| 1 CONSOLE MESSAGE: line 35: Uncaught this exception is expected | 1 CONSOLE ERROR: line 35: Uncaught this exception is expected |
| 2 CONSOLE MESSAGE: line 35: Uncaught this exception is expected | 2 CONSOLE ERROR: line 35: Uncaught this exception is expected |
| 3 Test exceptions in IDBRequest handlers cause aborts. | 3 Test exceptions in IDBRequest handlers cause aborts. |
| 4 | 4 |
| 5 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
". |
| 6 | 6 |
| 7 | 7 |
| 8 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; | 8 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; |
| 9 | 9 |
| 10 dbname = "exception-in-event-aborts.html" | 10 dbname = "exception-in-event-aborts.html" |
| 11 indexedDB.deleteDatabase(dbname) | 11 indexedDB.deleteDatabase(dbname) |
| 12 indexedDB.open(dbname) | 12 indexedDB.open(dbname) |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 store = trans.objectStore('storeName') | 51 store = trans.objectStore('storeName') |
| 52 store.add({x: 'value4', y: 'zzz4'}, 'key4') | 52 store.add({x: 'value4', y: 'zzz4'}, 'key4') |
| 53 PASS key4 added | 53 PASS key4 added |
| 54 | 54 |
| 55 PASS The transaction completed. | 55 PASS The transaction completed. |
| 56 | 56 |
| 57 PASS successfullyParsed is true | 57 PASS successfullyParsed is true |
| 58 | 58 |
| 59 TEST COMPLETE | 59 TEST COMPLETE |
| 60 | 60 |
| OLD | NEW |