1 Test IndexedDB readonly properties
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 dbname = "readonly-properties.html"
7 indexedDB.deleteDatabase(dbname)
9 objectStore = db.createObjectStore('foo');
10 trying to set readonly property objectStore.transaction
11 objectStore.transaction = this
12 PASS objectStore.transaction is still [object IDBTransaction]
13 PASS successfullyParsed is true