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

IDBCursor
---------------
* advance
 * FF: TransactionInactiveError > InvalidStateError (got) > TypeError
 * Cr: TypeError > InvalidStateError (got) > InvalidStateError (deleted) > TransactionInactiveError
* continue
 * FF: TransactionInactiveError > InvalidStateError (got) > DataError (key) > DataError (order)
 * Cr: DataError (key) > TransactionInactiveError > InvalidStateError (got) > InvalidStateError (deleted) > DataError (order)
* delete
 * FF: TransactionInactiveError > InvalidStateError (got) > InvalidStateError (key cursor) > ReadOnly
 * Cr: TransactionInactiveError > ReadOnly > InvalidStateError (got) > InvalidStateError (key cursor) > InvalidStateError (deleted)
* update
 * FF: TransactionInactiveError > InvalidStateError (got) > InvalidStateError (key cursor) > ReadOnly > DataError (key)
 * Cr: InvalidStateError (got) > InvalidStateError (key cursor) > InvalidStateError (deleted) > TransactionInactiveError > ReadOnly > DataError (key)



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

Received on Monday, 1 June 2015 23:04:13 UTC