WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
74213
IndexedDB: Throw exception if IDBCursor.continue() called with lower key than current
https://bugs.webkit.org/show_bug.cgi?id=74213
Summary
IndexedDB: Throw exception if IDBCursor.continue() called with lower key than...
Joshua Bell
Reported
2011-12-09 13:48:46 PST
IndexedDB: Throw exception if IDBCursor.continue() called with lower key than current
Attachments
Patch
(9.37 KB, patch)
2011-12-09 13:49 PST
,
Joshua Bell
no flags
Details
Formatted Diff
Diff
Patch
(9.31 KB, patch)
2011-12-09 15:22 PST
,
Joshua Bell
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Joshua Bell
Comment 1
2011-12-09 13:49:20 PST
Created
attachment 118628
[details]
Patch
Joshua Bell
Comment 2
2011-12-09 13:50:50 PST
Seems easy -- too easy. I think I'm missing something.
Joshua Bell
Comment 3
2011-12-09 13:53:52 PST
Need to defend against the backing store's key being null.
David Grogan
Comment 4
2011-12-09 14:18:29 PST
Comment on
attachment 118628
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=118628&action=review
LGTM
> LayoutTests/storage/indexeddb/cursor-continue.html:-165 > - evalAndLog("event.target.result.continue(1)");
What happens if this 1 stays?
Joshua Bell
Comment 5
2011-12-09 14:20:24 PST
Comment on
attachment 118628
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=118628&action=review
>> LayoutTests/storage/indexeddb/cursor-continue.html:-165 >> - evalAndLog("event.target.result.continue(1)"); > > What happens if this 1 stays?
1 > 0 and this is descending, so it trips the newly added check and generates a DATA_ERR. To run off the end of the index like this test is expecting, either a lower key (e.g. -1) or no key should be specified.
Joshua Bell
Comment 6
2011-12-09 14:34:55 PST
Hrm, this fails the cursor prefetch browser test. Digging...
Joshua Bell
Comment 7
2011-12-09 15:22:04 PST
Created
attachment 118656
[details]
Patch
Joshua Bell
Comment 8
2011-12-09 15:25:29 PST
Comment on
attachment 118656
[details]
Patch So this version passes tests. I believe with prefetching, m_cursor can end up becoming null even though we haven't reported back that the cursor has hit the end. Hans?
Hans Wennborg
Comment 9
2011-12-12 06:53:46 PST
(In reply to
comment #8
)
> (From update of
attachment 118656
[details]
) > So this version passes tests. I believe with prefetching, m_cursor can end up becoming null even though we haven't reported back that the cursor has hit the end. Hans?
Yes, prefetching can cause m_cursor to end up becoming null, even though the cursor on the front-end side hasn't reached the end yet. However, as soon as any other operation is performed, such as calling continue() with a key, the prefetch cache is flushed and the cursor in the back-end is reset to match the front-end one. I tried applying your first patch, but couldn't reproduce any failing browser test. Anyway, the patch LGTM.
Joshua Bell
Comment 10
2012-01-09 15:33:28 PST
After studying the code further, I'm satisfied with the second patch. Prefetching implies that m_cursor may be null before the continue has run (what my first patch was erroneously erroring on). But when a key is passed in to continue() - the only case this patch is concerned with - the prefetching is reset. (The prefetch and reset logic lives in the chromium port.) Normally, that will reset m_cursor so we could write if(key) { ASSERT(m_cursor); ... }, However, m_cursor may be null for a cursor that has run to the end but is still being held on to by script, so we need the tests as present in the second patch. tony@ - r? cq?
Joshua Bell
Comment 11
2012-01-09 15:44:30 PST
Comment on
attachment 118656
[details]
Patch Oops, forgot to cq? it. tony@ ?
Tony Chang
Comment 12
2012-01-09 15:48:35 PST
Comment on
attachment 118656
[details]
Patch Oh, I thought you had commit access?
WebKit Review Bot
Comment 13
2012-01-09 16:13:31 PST
Comment on
attachment 118656
[details]
Patch Clearing flags on attachment: 118656 Committed
r104506
: <
http://trac.webkit.org/changeset/104506
>
WebKit Review Bot
Comment 14
2012-01-09 16:13:36 PST
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