[w3c/IndexedDB] transaction should either take DOMStringList or DOMStringList needs to be iterable (#85)

[`transaction` method](http://w3c.github.io/IndexedDB/#dom-idbdatabase-transaction) on [`IDBDatabase`](http://w3c.github.io/IndexedDB/#request-idbdatabase) takes a `DOMString` or a `sequence<DOMString>` but [`DOMStringList`](http://w3c.github.io/IndexedDB/#request-domstringlist) is not iterable.

The consequence of this is that, you can’t call `transaction()` with the return value of [`objectStoreNames` method](http://w3c.github.io/IndexedDB/#dom-idbdatabase-objectstorenames).  This is not Web incompatible as far as I know.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/85

Received on Saturday, 20 August 2016 01:46:26 UTC