LibWeb/IDB: Implement IDBTransaction::commit

This commit is contained in:
stelar7 2025-04-09 23:11:12 +02:00 committed by Andrew Kaster
commit da56c1b1eb
Notes: github-actions[bot] 2025-04-11 01:14:15 +00:00
5 changed files with 77 additions and 1 deletions

View file

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