Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / storage / indexeddb / transaction-complete-with-js-recursion-cross-frame-expected.txt
bloba590844fab51a3529b8c76d2dbbc83066daf2997
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)
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 Pending transaction completed
16 PASS successfullyParsed is true
18 TEST COMPLETE