LibWeb/IDB: Implement fire_a_success_event

This commit is contained in:
stelar7 2025-04-11 11:10:05 +02:00 committed by Andrew Kaster
commit abb11a26a8
Notes: github-actions[bot] 2025-04-23 18:37:55 +00:00
2 changed files with 39 additions and 0 deletions

View file

@ -34,5 +34,6 @@ WebIDL::ExceptionOr<ErrorOr<JS::Value>> evaluate_key_path_on_a_value(JS::Realm&,
WebIDL::ExceptionOr<ErrorOr<GC::Ref<Key>>> extract_a_key_from_a_value_using_a_key_path(JS::Realm&, JS::Value, KeyPath const&, bool = false);
bool check_that_a_key_could_be_injected_into_a_value(JS::Realm&, JS::Value, KeyPath const&);
void fire_an_error_event(JS::Realm&, GC::Ref<IDBRequest>);
void fire_a_success_event(JS::Realm&, GC::Ref<IDBRequest>);
}