LibWeb/IDB: Set the source of a IDBRequest

This commit is contained in:
stelar7 2025-03-21 11:27:13 +01:00 committed by Sam Atkins
parent 090ac66af1
commit 923927564d
Notes: github-actions[bot] 2025-03-25 10:51:18 +00:00
3 changed files with 15 additions and 5 deletions

View file

@ -1,6 +1,7 @@
/*
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
* Copyright (c) 2025, stelar7 <dudedbz@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -16,8 +17,9 @@ GC_DEFINE_ALLOCATOR(IDBOpenDBRequest);
IDBOpenDBRequest::~IDBOpenDBRequest() = default;
// NOTE: The source of an open request is always null.
IDBOpenDBRequest::IDBOpenDBRequest(JS::Realm& realm)
: IDBRequest(realm)
: IDBRequest(realm, {})
{
}