RESOLVED FIXED 77805
Port some indexeddb layout tests to workers.
https://bugs.webkit.org/show_bug.cgi?id=77805
Summary Port some indexeddb layout tests to workers.
David Grogan
Reported 2012-02-03 21:20:10 PST
port some idb layout tests to workers
Attachments
Patch (63.24 KB, patch)
2012-02-03 21:20 PST, David Grogan
no flags
Patch (65.53 KB, patch)
2012-02-06 11:58 PST, David Grogan
no flags
Patch (65.62 KB, patch)
2012-02-06 13:57 PST, David Grogan
no flags
Patch (65.64 KB, patch)
2012-02-06 14:47 PST, David Grogan
no flags
David Grogan
Comment 1 2012-02-03 21:20:28 PST
David Grogan
Comment 2 2012-02-06 11:58:54 PST
David Grogan
Comment 3 2012-02-06 12:03:24 PST
Comment on attachment 125681 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=125681&action=review Josh, do you know what's going on with DOMException here? > LayoutTests/storage/indexeddb/objectstore-basics-expected.txt:84 > +PASS code is 25 DOMException.DATA_CLONE_ERR is the only problem I've run into so far - JS from workers thinks it is undefined. > LayoutTests/storage/indexeddb/objectstore-basics-workers-expected.txt:85 > +FAIL [Worker] code should be 25 (of type number). Was undefined (of type undefined). And undefined is propogated out anyway.
Joshua Bell
Comment 4 2012-02-06 13:11:48 PST
Comment on attachment 125681 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=125681&action=review > LayoutTests/storage/indexeddb/resources/objectstore-basics.js:168 > + store.add({x: 'bar', y: document.getElementById('console')}, 'bar'); Discussed this offline, but for the record: The "document" reference here will fail as undefined in workers. Since this is just trying to grab an object that can't be cloned, replace "document.getElementById('console')" with "self" > LayoutTests/storage/indexeddb/resources/objectstore-basics.js:173 > + shouldBe("code", "25"); ... and DOMException itself will be undefined, so we probably need to leave this as 25. Add a FIXME indicating that when we move to DOM4-style exceptions this should look for the name "DataCloneError"
David Grogan
Comment 5 2012-02-06 13:57:34 PST
David Grogan
Comment 6 2012-02-06 14:00:32 PST
Comment on attachment 125703 [details] Patch This patch fixes the non-cloneable test to use 'self' and the worker version now passes.
David Grogan
Comment 7 2012-02-06 14:47:55 PST
David Grogan
Comment 8 2012-02-06 14:59:14 PST
Tony, could you review this patch?
David Grogan
Comment 9 2012-02-06 17:07:18 PST
*** Bug 73297 has been marked as a duplicate of this bug. ***
WebKit Review Bot
Comment 10 2012-02-06 17:39:29 PST
Comment on attachment 125712 [details] Patch Clearing flags on attachment: 125712 Committed r106886: <http://trac.webkit.org/changeset/106886>
WebKit Review Bot
Comment 11 2012-02-06 17:39:58 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.