LibWeb: Implement IDBKeyRange

This commit is contained in:
stelar7 2025-01-08 23:25:46 +01:00 committed by Jelle Raaijmakers
commit 73272d92f0
Notes: github-actions[bot] 2025-01-14 22:47:28 +00:00
6 changed files with 286 additions and 14 deletions

View file

@ -20,5 +20,6 @@ void close_a_database_connection(IDBDatabase&, bool forced = false);
void upgrade_a_database(JS::Realm&, GC::Ref<IDBDatabase>, u64, GC::Ref<IDBRequest>);
WebIDL::ExceptionOr<u64> delete_a_database(JS::Realm&, StorageAPI::StorageKey, String, GC::Ref<IDBRequest>);
void abort_a_transaction(IDBTransaction&, GC::Ptr<WebIDL::DOMException>);
JS::Value convert_a_key_to_a_value(JS::Realm&, GC::Ref<Key>);
}