| OLD | NEW |
| 1 Test for crbug.com/108071 | 1 Test for crbug.com/108071 |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB; | 6 indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB; |
| 7 PASS indexedDB == null is false | 7 PASS indexedDB == null is false |
| 8 indexedDB.deleteDatabase(DBNAME) | 8 indexedDB.deleteDatabase(DBNAME) |
| 9 indexedDB.open(DBNAME) | 9 indexedDB.open(DBNAME) |
| 10 db = event.target.result | 10 db = event.target.result |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 0: Alpha | 45 0: Alpha |
| 46 1: Bravo | 46 1: Bravo |
| 47 2: Charlie | 47 2: Charlie |
| 48 3: Delta | 48 3: Delta |
| 49 trans.abort() | 49 trans.abort() |
| 50 PASS Transaction aborted as expected | 50 PASS Transaction aborted as expected |
| 51 PASS successfullyParsed is true | 51 PASS successfullyParsed is true |
| 52 | 52 |
| 53 TEST COMPLETE | 53 TEST COMPLETE |
| 54 | 54 |
| OLD | NEW |