mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-03 06:40:05 +00:00
LibWeb: Remove old FIXMEs
This commit is contained in:
parent
9aebe5f2eb
commit
ca25f76ccc
Notes:
github-actions[bot]
2024-11-26 13:51:56 +00:00
Author: https://github.com/stelar7
Commit: ca25f76ccc
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2236
Reviewed-by: https://github.com/gmta ✅
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ WebIDL::ExceptionOr<GC::Ref<IDBDatabase>> open_a_database_connection(JS::Realm&
|
|||
// 1. Let openConnections be the set of all connections, except connection, associated with db.
|
||||
auto open_connections = db->associated_connections_except(connection);
|
||||
|
||||
// FIXME: 2. For each entry of openConnections that does not have its close pending flag set to true,
|
||||
// 2. For each entry of openConnections that does not have its close pending flag set to true,
|
||||
// queue a task to fire a version change event named versionchange at entry with db’s version and version.
|
||||
for (auto& entry : open_connections) {
|
||||
if (!entry->close_pending()) {
|
||||
|
@ -85,7 +85,7 @@ WebIDL::ExceptionOr<GC::Ref<IDBDatabase>> open_a_database_connection(JS::Realm&
|
|||
|
||||
// FIXME: 3. Wait for all of the events to be fired.
|
||||
|
||||
// FIXME: 4. If any of the connections in openConnections are still not closed,
|
||||
// 4. If any of the connections in openConnections are still not closed,
|
||||
// queue a task to fire a version change event named blocked at request with db’s version and version.
|
||||
for (auto& entry : open_connections) {
|
||||
if (entry->state() != IDBDatabase::ConnectionState::Closed) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue