blob: 0ce55401b5d9be9a5471523bcc19adb39e66e2d5 [file] [log] [blame]
Test IndexedDB readonly properties
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
dbname = "readonly-properties.html"
indexedDB.deleteDatabase(dbname)
indexedDB.open(dbname)
objectStore = db.createObjectStore('foo');
trying to set readonly property objectStore.transaction
objectStore.transaction = this
PASS objectStore.transaction is still [object IDBTransaction]
PASS successfullyParsed is true
TEST COMPLETE