1 Test that pending transactions are not completed during recursive JS calls until all JS (in all frames) is finished.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 dbname = "transaction-complete-with-js-recursion-cross-frame.html"
7 indexedDB.deleteDatabase(dbname)
9 pendingTransaction = db.transaction(['objectStore'], 'readwrite')
11 transaction = db.transaction(['objectStore'], 'readwrite')
13 store = pendingTransaction.objectStore('objectStore')
14 PASS store !== undefined is true
15 Pending transaction completed
16 PASS successfullyParsed is true