LibWeb: Implement abort_a_transaction for IndexedDB

This commit is contained in:
stelar7 2024-12-01 21:57:32 +01:00 committed by Jelle Raaijmakers
commit 2954278e37
Notes: github-actions[bot] 2024-12-14 22:04:24 +00:00
6 changed files with 66 additions and 2 deletions

View file

@ -11,7 +11,7 @@ interface IDBTransaction : EventTarget {
readonly attribute DOMException? error;
[FIXME] IDBObjectStore objectStore(DOMString name);
[FIXME] undefined commit();
[FIXME] undefined abort();
undefined abort();
attribute EventHandler onabort;
attribute EventHandler oncomplete;