[Bug 16501] IndexedDB: IDBObjectStore/IDBIndex.keyPath when key path is an Array?

https://www.w3.org/Bugs/Public/show_bug.cgi?id=16501

--- Comment #1 from Joshua Bell <jsbell@chromium.org> 2012-03-23 22:04:13 UTC ---
The WebIDL for IDBObjectStore's createIndex method needs an update as well:

 IDBIndex   createIndex (DOMString name, DOMString keyPath, optional
IDBIndexParameters optionalParameters);

Should either be "any" or an overload:

 IDBIndex   createIndex (DOMString name, DOMString keyPath, optional
IDBIndexParameters optionalParameters);
 IDBIndex   createIndex (DOMString name, DOMString[] keyPath, optional
IDBIndexParameters optionalParameters);

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Friday, 23 March 2012 22:04:16 UTC