WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
91409
IndexedDB: Implement spec updates to IDBTransaction.error
https://bugs.webkit.org/show_bug.cgi?id=91409
Summary
IndexedDB: Implement spec updates to IDBTransaction.error
Joshua Bell
Reported
2012-07-16 11:34:49 PDT
In the latest version of the IDB spec:
http://dvcs.w3.org/hg/IndexedDB/rev/aab14b0951ca
* IDBTransaction.error should not throw; return null if transaction not finished. * If abort() is called on the transaction, error should be null. * If the transaction was aborted due to an error when committing, error should be a DOMError e.g. UnknownError, QuotaError, etc. * If an exception bubbles out of a request's error event handler, error should be AbortError even if the event does not have preventDefault called (i.e. not the error event's error)
Attachments
Patch
(19.01 KB, patch)
2012-07-16 14:03 PDT
,
Joshua Bell
no flags
Details
Formatted Diff
Diff
Patch
(21.17 KB, patch)
2012-07-16 16:01 PDT
,
Joshua Bell
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Joshua Bell
Comment 1
2012-07-16 14:03:57 PDT
Created
attachment 152607
[details]
Patch
Joshua Bell
Comment 2
2012-07-16 14:05:27 PDT
dgrogan@, alecflett@ - please take a look?
David Grogan
Comment 3
2012-07-16 15:35:38 PDT
Comment on
attachment 152607
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=152607&action=review
LGTM
> Source/WebCore/Modules/indexeddb/IDBTransaction.cpp:266 > + setError(DOMError::create(IDBDatabaseException::getErrorName(IDBDatabaseException::UNKNOWN_ERR)));
Looks like the only way to test this in layout tests is for createIndex(unique=true) to fail because the existing data isn't unique. The quota browser test should hit this also. There's no WebKit API for the back end to pass the appropriate error? Is that in the pipeline?
Joshua Bell
Comment 4
2012-07-16 15:42:51 PDT
Comment on
attachment 152607
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=152607&action=review
>> Source/WebCore/Modules/indexeddb/IDBTransaction.cpp:266 >> + setError(DOMError::create(IDBDatabaseException::getErrorName(IDBDatabaseException::UNKNOWN_ERR))); > > Looks like the only way to test this in layout tests is for createIndex(unique=true) to fail because the existing data isn't unique. The quota browser test should hit this also. > > There's no WebKit API for the back end to pass the appropriate error? Is that in the pipeline?
Ah, good point about createIndex() - I'll update the test to include that case. Yeah, no WebKit API; it should probably be in IDBTransactionCallbacks::onAbort(). I haven't filed a bug yet.
Joshua Bell
Comment 5
2012-07-16 16:01:18 PDT
Created
attachment 152633
[details]
Patch
Joshua Bell
Comment 6
2012-07-16 16:01:57 PDT
tony@ - r?
WebKit Review Bot
Comment 7
2012-07-16 17:31:57 PDT
Comment on
attachment 152633
[details]
Patch Clearing flags on attachment: 152633 Committed
r122782
: <
http://trac.webkit.org/changeset/122782
>
WebKit Review Bot
Comment 8
2012-07-16 17:32:01 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug