1 Ensure deleteDatabase() can run concurrently with transactions in other databases
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 dbname = "deletedatabase-transaction.html"
7 indexedDB.deleteDatabase(dbname)
9 db.createObjectStore('store')
11 Start a transaction against the first database:
12 trans = db.transaction('store', 'readonly')
13 trans.objectStore('store').get(0)
15 Delete a different database:
16 dbname2 = dbname + '2'
17 indexedDB.deleteDatabase(dbname2)
18 PASS success event was fired at delete request
19 PASS successfullyParsed is true