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

IDBDatabase:
* createObjectStore:
 * FF: InvalidStateError > SyntaxError > ConstraintError > InvalidAccessError
 * Cr: InvalidStateError > TransactionInactiveError > ConstraintError > SyntaxError > InvalidAccessError
* deleteObjectStore
 * FF: InvalidStateError > NotFoundError
 * Cr: InvalidStateError > TransactionInactiveError > NotFoundError
* transaction
 * FF: InvalidStateError > InvalidAccessError (empty) > NotFoundError > InvalidAccessError (mode)
 * Cr: InvalidAccessError (empty) > InvalidAccessError (mode) > InvalidStateError > NotFoundError

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

Received on Monday, 1 June 2015 22:17:49 UTC