Re: [IndexedDB] Validate exception ordering against implementations (#11)

IDBObjectStore:
* add/put:
 * FF: TransactionInactiveError > ReadOnlyError > DataError
 * Cr: InvalidStateError (deleted) > TransactionInactiveError > ReadOnlyError > DataError
* clear
 * FF: TransactionInactiveError > ReadOnlyError
 * Cr: InvalidStateError (deleted) > TransactionInactiveError > ReadOnlyError
* createIndex
 * FF: SyntaxError > InvalidStateError > ConstraintError > InvalidAccessError
 * Cr: InvalidStateError (deleted) > TransactionInactiveError > SyntaxError > ConstraintError > InvalidAccessError
* delete
 * FF: TransactionInactiveError > ReadOnly > DataError
 * Cr: InvalidStateError (deleted) > TransactionInactiveError > ReadOnly > DataError
* deleteIndex
 * FF: InvalidStateError > NotFoundError
 * Cr: InvalidStateError (deleted) > TransactionInactiveError > NotFoundError
* get/getAll/getAllKeys/count/openCursor/openKeyCursor
 * FF: TransactionInactiveError > DataError
 * Cr: InvalidStateError (deleted) > TransactionInactiveError > DataError


---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/11#issuecomment-107736952

Received on Monday, 1 June 2015 22:35:04 UTC