2023-02-03 21:50:10 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Kenneth Myhra <kennethmyhra@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/FormDataEventPrototype.h>
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
|
|
#include <LibWeb/HTML/FormDataEvent.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(FormDataEvent);
|
2023-11-19 19:47:52 +01:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
WebIDL::ExceptionOr<GC::Ref<FormDataEvent>> FormDataEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, FormDataEventInit const& event_init)
|
2023-02-03 21:50:10 +01:00
|
|
|
{
|
2024-11-14 05:50:17 +13:00
|
|
|
return realm.create<FormDataEvent>(realm, event_name, event_init);
|
2023-02-03 21:50:10 +01:00
|
|
|
}
|
|
|
|
|
2023-03-05 10:53:19 +01:00
|
|
|
FormDataEvent::FormDataEvent(JS::Realm& realm, FlyString const& event_name, FormDataEventInit const& event_init)
|
2023-04-06 16:12:33 +02:00
|
|
|
: DOM::Event(realm, event_name, event_init)
|
2023-02-03 21:50:10 +01:00
|
|
|
, m_form_data(event_init.form_data)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
FormDataEvent::~FormDataEvent() = default;
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void FormDataEvent::initialize(JS::Realm& realm)
|
2023-02-03 21:50:10 +01:00
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
Base::initialize(realm);
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(FormDataEvent);
|
2023-02-03 21:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FormDataEvent::visit_edges(Cell::Visitor& visitor)
|
|
|
|
{
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
visitor.visit(m_form_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|