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

@ -38,7 +38,7 @@ public:
void set_error(GC::Ptr<WebIDL::DOMException> error) { m_error = error; }
void set_processed(bool processed) { m_processed = processed; }
void set_source(IDBRequestSource source) { m_source = source; }
void set_transaction(GC::Ref<IDBTransaction> transaction) { m_transaction = transaction; }
void set_transaction(GC::Ptr<IDBTransaction> transaction) { m_transaction = transaction; }
void set_onsuccess(WebIDL::CallbackType*);
WebIDL::CallbackType* onsuccess();