LibWeb/IDB: Implement IDBTransaction::objectStore

This commit is contained in:
stelar7 2025-04-09 23:24:44 +02:00 committed by Andrew Kaster
commit fc06d088c3
Notes: github-actions[bot] 2025-04-11 01:13:48 +00:00
3 changed files with 33 additions and 1 deletions

View file

@ -9,7 +9,7 @@ interface IDBTransaction : EventTarget {
readonly attribute IDBTransactionDurability durability;
[SameObject, ImplementedAs=connection] readonly attribute IDBDatabase db;
readonly attribute DOMException? error;
[FIXME] IDBObjectStore objectStore(DOMString name);
IDBObjectStore objectStore(DOMString name);
undefined commit();
undefined abort();