[Webkit-unassigned] [Bug 60208] New: IndexedDB multiple calls to transaction.objectStore(name) should return the same instance
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed May 4 13:54:58 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=60208
Summary: IndexedDB multiple calls to
transaction.objectStore(name) should return the same
instance
Product: WebKit
Version: 528+ (Nightly build)
Platform: Unspecified
OS/Version: Unspecified
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: New Bugs
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: pilgrim at chromium.org
CC: fishd at chromium.org, tony at chromium.org,
hans at chromium.org, dgrogan at chromium.org,
pilgrim at chromium.org
Original test: http://mxr.mozilla.org/mozilla2.0/source/dom/indexedDB/test/test_object_identity.html?force=1
http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#widl-IDBTransactionSync-objectStore states "Every call to this function on the same IDBTransactionSync instance and with the same name returns the same IDBObjectStoreSync instance." Thus, if we have this code:
objectStore1 = a_valid_transaction.objectStore('foo');
objectStore2 = a_valid_transaction.objectStore('foo');
I would expect objectStore1 === objectStore2, but it doesn't. (In Mozilla it does.)
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list