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

@aliams, @wanderview - do you have a preference between:

* Make __DOMStringList__ have `iterable<DOMString>`; or
* Make `transaction()`'s signature be `transaction((DOMString or sequence<DOMString> or DOMStringList)` and add logic for DOMStringList in the method algorithm

The former is more consistent with other platform types and with our eventual hope to replace it with `FrozenArrayWithContains<DOMString>` (or whatever), but does add more to a deprecated type.

The latter is a more scoped change.

I'm pretty sure Blink internally still checks for length and indexed properties, as previously specified in WebIDL, but either approach is likely to be web-compatible.


-- 
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#issuecomment-241235824

Received on Sunday, 21 August 2016 02:50:57 UTC