LibWeb/IDB: Keep track of the connection used to start a transaction

This commit is contained in:
stelar7 2025-04-09 22:59:07 +02:00 committed by Andrew Kaster
commit fc93ec135e
Notes: github-actions[bot] 2025-04-11 01:14:28 +00:00
3 changed files with 8 additions and 0 deletions

View file

@ -44,6 +44,7 @@ void IDBDatabase::visit_edges(Visitor& visitor)
Base::visit_edges(visitor);
visitor.visit(m_object_store_set);
visitor.visit(m_associated_database);
visitor.visit(m_transactions);
}
void IDBDatabase::set_onabort(WebIDL::CallbackType* event_handler)