LibWeb/IDB: Implement clone_in_realm

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

View file

@ -28,5 +28,6 @@ JS::Value convert_a_key_to_a_value(JS::Realm&, GC::Ref<Key>);
bool is_valid_key_path(KeyPath const&);
GC::Ref<HTML::DOMStringList> create_a_sorted_name_list(JS::Realm&, Vector<String>);
void commit_a_transaction(JS::Realm&, GC::Ref<IDBTransaction>);
WebIDL::ExceptionOr<JS::Value> clone_in_realm(JS::Realm&, JS::Value, GC::Ref<IDBTransaction>);
}