Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / storage / indexeddb / transaction-read-only-expected.txt
blobe4441f50f0e463f731d88ce33ce477b87f4f1510
1 Test read-only transactions in IndexedDB.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 dbname = "transaction-read-only.html"
7 indexedDB.deleteDatabase(dbname)
8 indexedDB.open(dbname)
9 store = db.createObjectStore('store')
10 store.put('x', 'y')
11 trans = db.transaction('store')
12 Expecting exception from trans.objectStore('store').put('a', 'b')
13 PASS Exception was thrown.
14 PASS code is 0
15 PASS ename is 'ReadOnlyError'
16 Exception message: Failed to execute 'put' on 'IDBObjectStore': The transaction is read-only.
17 trans = db.transaction('store')
18 Expecting exception from trans.objectStore('store').delete('x')
19 PASS Exception was thrown.
20 PASS code is 0
21 PASS ename is 'ReadOnlyError'
22 Exception message: Failed to execute 'delete' on 'IDBObjectStore': The transaction is read-only.
23 trans = db.transaction('store')
24 cur = trans.objectStore('store').openCursor()
25 PASS !event.target.result is false
26 Expecting exception from event.target.result.delete()
27 PASS Exception was thrown.
28 PASS code is 0
29 PASS ename is 'ReadOnlyError'
30 Exception message: Failed to execute 'delete' on 'IDBCursor': The record may not be deleted inside a read-only transaction.
31 PASS successfullyParsed is true
33 TEST COMPLETE