Closed
Bug 1253634
Opened 9 years ago
Closed 9 years ago
Figure out why idbfactory_open9.htm errors
Categories
(Core :: Storage: IndexedDB, defect)
Core
Storage: IndexedDB
Tracking
()
RESOLVED
DUPLICATE
of bug 1275496
People
(Reporter: Ms2ger, Unassigned)
References
(Blocks 1 open bug)
Details
(Whiteboard: btpp-fixlater)
It claims there's an uncaught exception from inside the function passed to async_test, which shouldn't be possible.
Comment 1•9 years ago
|
||
The line that seems to be throwing is 52 (or, at least one of the lines):
var rq = window.indexedDB.open(dbname, val);
which throws AbortError. It seems from the spec like these steps might be run async, so the error is caused by this code but not actually thrown inside the try/catch block. Which is pretty funky.
Comment 2•9 years ago
|
||
(btpp = bug triage pilot program)
I'm putting "-fixlater" here since this doesn't seem like a super-critical "-fixnow" but seems more important than a "we'll get to it some day" "-backlog".
Whiteboard: btpp-fixlater
Comment 3•9 years ago
|
||
More analysis is summarized in bug 1275496 comment 2.
In short, this failure is caused by the overloading function of |IDBFactory.open(name, IDBOpenDBOptions)| and the signature change of |IDBFactory.open(name, version)| done in bug 785884.
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•