LibWeb: Add missing spec comment for method

This commit is contained in:
stelar7 2024-12-01 23:40:00 +01:00 committed by Jelle Raaijmakers
parent a25bba27fa
commit 32e5fb4da5
Notes: github-actions[bot] 2024-12-14 22:04:01 +00:00

View file

@ -298,6 +298,7 @@ void close_a_database_connection(IDBDatabase& connection, bool forced)
connection.dispatch_event(DOM::Event::create(connection.realm(), HTML::EventNames::close));
}
// https://w3c.github.io/IndexedDB/#upgrade-a-database
void upgrade_a_database(JS::Realm& realm, GC::Ref<IDBDatabase> connection, u64 version, GC::Ref<IDBRequest> request)
{
// 1. Let db be connections database.