1 Verify that queuing up several commands works (and they all fire).
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 dbname = "queued-commands.html"
7 indexedDB.deleteDatabase(dbname)
9 db.createObjectStore('storeName')
10 store.createIndex('indexName', 'x')
11 store.add({x: 'value', y: 'zzz'}, 'key')
12 store.add({x: 'value2', y: 'zzz2'}, 'key2')
13 store.put({x: 'valu2', y: 'zz2'}, 'ky2')
17 PASS successfullyParsed is true