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

@ -27,5 +27,6 @@ void abort_a_transaction(GC::Ref<IDBTransaction>, GC::Ptr<WebIDL::DOMException>)
JS::Value convert_a_key_to_a_value(JS::Realm&, GC::Ref<Key>);
bool is_valid_key_path(KeyPath const&);
GC::Ref<HTML::DOMStringList> create_a_sorted_name_list(JS::Realm&, Vector<String>);
void commit_a_transaction(JS::Realm&, GC::Ref<IDBTransaction>);
}