w3c / IndexedDB

Indexed Database API
https://w3c.github.io/IndexedDB/
Other
243 stars 62 forks source link

Missing durability attribute in the IDBTransaction interface #316

Closed triple-underscore closed 4 years ago

triple-underscore commented 4 years ago

Which should have been added in the recent commit https://github.com/w3c/IndexedDB/commit/1a519e7f0a12de4acffc641d3254c1c2d34d380a probably, to be the following form:

interface IDBTransaction : EventTarget {...
    readonly attribute IDBTransactionDurability durability;
...}
triple-underscore commented 4 years ago

Also, the options argument missing in the DOM intro

transaction = connection . transaction(scope [, mode = "readonly"])

inexorabletash commented 4 years ago

Ugh, thanks for catching this. Will fix.