1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-02 22:42:08 +00:00

LibWeb: Remove now-unnecessary JS::Handles in microtask capture lists

This commit is contained in:
Andreas Kling 2022-09-24 12:16:54 +02:00
parent 874e64d664
commit 37ea6de772
2 changed files with 3 additions and 3 deletions

View file

@ -509,8 +509,8 @@ void Window::fire_a_page_transition_event(FlyString const& event_name, bool pers
void Window::queue_microtask_impl(Bindings::CallbackType& callback)
{
// The queueMicrotask(callback) method must queue a microtask to invoke callback,
HTML::queue_a_microtask(&associated_document(), [callback = JS::make_handle(callback)]() mutable {
auto result = Bindings::IDL::invoke_callback(*callback, {});
HTML::queue_a_microtask(&associated_document(), [&callback]() mutable {
auto result = Bindings::IDL::invoke_callback(callback, {});
// and if callback throws an exception, report the exception.
if (result.is_error())
HTML::report_exception(result);