Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / storage / indexeddb / transaction-complete-with-js-recursion-expected.txt
blob8fa746f409fa1c3bb4716f6f48a8c0da63b393ac
1 Test that pending transactions are not completed during recursive JS calls until all JS is finished.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 dbname = "transaction-complete-with-js-recursion.html"
7 indexedDB.deleteDatabase(dbname)
8 indexedDB.open(dbname)
9 pendingTransaction = db.transaction(['objectStore'], 'readwrite')
10 Start re-entrant JS
11 transaction = db.transaction(['objectStore'], 'readwrite')
12 End re-entrant JS
13 store = pendingTransaction.objectStore('objectStore')
14 PASS store !== undefined is true
15 PASS Pending transaction completed
16 PASS successfullyParsed is true
18 TEST COMPLETE