1 CONSOLE ERROR: line 52: Uncaught Error: This should *NOT* be caught!
2 Ensure that aborted VERSION_CHANGE transactions are completely rolled back
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
7 dbname = "version-change-abort.html"
8 indexedDB.deleteDatabase(dbname)
10 PASS trans instanceof IDBTransaction is true
11 store = db.createObjectStore('store1')
15 vcreq = indexedDB.open(dbname, 2)
16 setVersion2() callback
18 PASS vcreq.transaction instanceof IDBTransaction is true
19 store = db.deleteObjectStore('store1')
20 store = db.createObjectStore('store2')
23 setVersion2Abort() callback
24 request = indexedDB.open(dbname)
26 PASS db.objectStoreNames.contains('store1') is true
27 PASS db.objectStoreNames.contains('store2') is false
28 PASS successfullyParsed is true